Update and refactor core functionality
- Update common package utilities - Refactor network code for better error handling - Remove deprecated files and functionality - Enhance blacklist and filtering capabilities - Improve snapshot handling and processing
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
package common
|
||||
|
||||
import "os"
|
||||
|
||||
// FatalErrorsChan accepts errors from workers.
|
||||
// In case of fatal error, gracefully
|
||||
// exits the application.
|
||||
var (
|
||||
StatusChan chan WorkerStatus
|
||||
// ErrorsChan accepts errors from workers.
|
||||
// In case of fatal error, gracefully
|
||||
// exits the application.
|
||||
ErrorsChan chan error
|
||||
FatalErrorsChan chan error
|
||||
SignalsChan chan os.Signal
|
||||
)
|
||||
|
||||
const VERSION string = "0.0.1"
|
||||
|
||||
Reference in New Issue
Block a user