You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
534 B
20 lines
534 B
// Code generated by Kitex v0.4.4. DO NOT EDIT.
|
|
package userservice
|
|
|
|
import (
|
|
user "github.com/TremblingV5/DouTok/kitex_gen/user"
|
|
server "github.com/cloudwego/kitex/server"
|
|
)
|
|
|
|
// NewServer creates a server.Server with the given handler and options.
|
|
func NewServer(handler user.UserService, opts ...server.Option) server.Server {
|
|
var options []server.Option
|
|
|
|
options = append(options, opts...)
|
|
|
|
svr := server.NewServer(options...)
|
|
if err := svr.RegisterService(serviceInfo(), handler); err != nil {
|
|
panic(err)
|
|
}
|
|
return svr
|
|
}
|
|
|