working commit

This commit is contained in:
2026-06-06 17:49:33 +02:00
parent c96602e933
commit 0e303ef96a
12 changed files with 89 additions and 21 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
package handler
import (
"mbase/app/logic"
"mbase/app/operator"
"mbase/pkg/logger"
"mbase/pkg/mbctl"
@@ -9,12 +9,12 @@ import (
)
type HandlerConfig struct {
Logic *logic.Logic
Logic *operator.Logic
}
type Handler struct {
mbctl.UnimplementedControlServer
lg *logic.Logic
lg *operator.Logic
log *logger.Logger
}