wip: add analysis runner / agent, separate Server/Queue/Agent, use New* initializers

This commit is contained in:
Michael Hohn
2024-05-23 15:46:55 -07:00
committed by =Michael Hohn
parent 2ab596bf1d
commit f7155eba50
10 changed files with 209 additions and 22 deletions

View File

@@ -2,3 +2,8 @@ package logger
type LoggerSingle struct {
}
func NewLoggerSingle() *LoggerSingle {
l := LoggerSingle{}
return &l
}