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
@@ -8,7 +8,7 @@ import (
"net"
"mbase/app/handler"
"mbase/app/logic"
"mbase/app/operator"
"mbase/pkg/logger"
"mbase/pkg/netacl"
@@ -20,7 +20,7 @@ import (
type ServiceConfig struct {
Handler *handler.Handler
Logic *logic.Logic
Logic *operator.Logic
NetACL *netacl.NetACL
Portnum uint32
Address string
@@ -33,7 +33,7 @@ type ServiceConfig struct {
type Service struct {
gsrv *grpc.Server
hand *handler.Handler
lg *logic.Logic
lg *operator.Logic
log *logger.Logger
nacl *netacl.NetACL
portnum uint32