- 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
16 lines
285 B
Go
16 lines
285 B
Go
package common
|
|
|
|
import "os"
|
|
|
|
// FatalErrorsChan accepts errors from workers.
|
|
// In case of fatal error, gracefully
|
|
// exits the application.
|
|
var (
|
|
FatalErrorsChan chan error
|
|
SignalsChan chan os.Signal
|
|
)
|
|
|
|
const VERSION string = "0.0.1"
|
|
|
|
const CtxKeyLogger string = "CtxKeyLogger"
|