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 ds := &servlet.DataServlets{} sh := &ServerHandlers{ ServerHandlers: *_config.ServerHandler, Config: _config, } sh.RegisterServlet("/auth", as) sh.RegisterServlet("/probe", ps) sh.RegisterServlet("/data", ds) s := &cssw.Server{ ServerHandler: sh, } return s }