You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
funcmain() {
// appObjects.server is a *grpc.Server// appObjects.service is a *service.FooBarService (generated by protoc)api.RegisterAPIServer(appObjects.server, appObjects.service)
zap.L().Info("starting grpc server", zap.String("listenAddr", ":8080"))
// -- blockingerr=app.server.Serve(appObjects.listener) // appObjects.listener is a net.Listeneriferr!=nil {
zap.L().Error("failed to run server", zap.Error(err))
os.Exit(20)
}
}