Files
gemini-grc/common/shared.go
antanst a8173544e7 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
2025-06-29 22:38:38 +03:00

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"