mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-16 17:48:49 +02:00
14 lines
231 B
Go
14 lines
231 B
Go
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
|
|
}
|