Move grpc server code to "grpc" package.

This commit is contained in:
Joachim Bauch 2026-01-09 09:34:42 +01:00
commit be8353a54b
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02
14 changed files with 1444 additions and 664 deletions

View file

@ -221,7 +221,7 @@ func main() {
}
}()
rpcServer, err := server.NewGrpcServer(stopCtx, cfg, version)
rpcServer, err := grpc.NewServer(stopCtx, cfg, version)
if err != nil {
logger.Fatalf("Could not create RPC server: %s", err)
}