pusher/kitex_gen/push/pushservice/server.go
timerzz c16e02a7ea
All checks were successful
Build image / build (push) Successful in 1m21s
feat push可以不传id
2024-11-29 21:53:59 +08:00

26 lines
782 B
Go

// Code generated by Kitex v0.9.1. DO NOT EDIT.
package pushservice
import (
push "gitea.timerzz.com/kedaya_haitao/pusher/kitex_gen/push"
server "github.com/cloudwego/kitex/server"
)
// NewServer creates a server.Server with the given handler and options.
func NewServer(handler push.PushService, opts ...server.Option) server.Server {
var options []server.Option
options = append(options, opts...)
options = append(options, server.WithCompatibleMiddlewareForUnary())
svr := server.NewServer(options...)
if err := svr.RegisterService(serviceInfo(), handler); err != nil {
panic(err)
}
return svr
}
func RegisterService(svr server.Server, handler push.PushService, opts ...server.RegisterOption) error {
return svr.RegisterService(serviceInfo(), handler, opts...)
}