// Code generated by Kitex v0.9.0. 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...) }