probe_gateway_rpc/server/server.go
crusader 9d30cf9726 ing
2018-05-11 12:24:29 +09:00

35 lines
730 B
Go

package server
import (
crpj "git.loafle.net/commons/rpc-go/protocol/json"
cssw "git.loafle.net/commons/server-go/socket/web"
"git.loafle.net/overflow/probe_gateway_rpc/config"
"git.loafle.net/overflow/probe_gateway_rpc/servlet"
)
func New(_config *config.Config) *cssw.Server {
rpcServerCodec := crpj.NewServerCodec()
as := &servlet.AuthServlets{}
as.RPCServerCodec = rpcServerCodec
as.UseSession = true
ps := &servlet.ProbeServlets{}
ps.RPCServerCodec = rpcServerCodec
ps.UseSession = true
sh := &ServerHandlers{
ServerHandlers: *_config.ServerHandler,
Config: _config,
}
sh.RegisterServlet("/auth", as)
sh.RegisterServlet("/probe", ps)
s := &cssw.Server{
ServerHandler: sh,
}
return s
}