Reorganize code for more granular imports

This commit is contained in:
2025-02-26 10:34:25 +02:00
parent 8350e106d6
commit ca008b0796
23 changed files with 1549 additions and 1232 deletions

13
common/shared.go Normal file
View File

@@ -0,0 +1,13 @@
package common
var (
StatusChan chan WorkerStatus
// ErrorsChan accepts errors from workers.
// In case of fatal error, gracefully
// exits the application.
ErrorsChan chan error
)
const VERSION string = "0.0.1"
const CtxKeyLogger string = "CtxKeyLogger"