feat:#36 added protobuf communication for modules

This commit is contained in:
Elmar Kresse
2024-06-17 00:59:33 +02:00
parent 8548a537ec
commit fad85f2884
18 changed files with 1286 additions and 59 deletions

View File

@@ -0,0 +1,13 @@
package model
import (
"github.com/gofiber/fiber/v3"
googleGRPC "google.golang.org/grpc"
)
type AppType struct {
GrpcClient *googleGRPC.ClientConn
Host string
Fiber *fiber.App
DataManagerURL string
}