Web 服务

This commit is contained in:
奶爸
2019-12-08 16:59:58 +08:00
parent 5a21ce6ca6
commit d8c4364653
33 changed files with 1112 additions and 21 deletions

26
cmd/dashboard/rpc/rpc.go Normal file
View File

@@ -0,0 +1,26 @@
package rpc
import (
"net"
"google.golang.org/grpc"
pb "github.com/p14yground/nezha/proto"
rpcService "github.com/p14yground/nezha/service/rpc"
)
// ServeRPC ...
func ServeRPC() {
server := grpc.NewServer()
pb.RegisterNezhaServiceServer(server, &rpcService.NezhaHandler{
Auth: &rpcService.AuthHandler{
AppKey: "naiba",
AppSecret: "123456",
},
})
listen, err := net.Listen("tcp", ":5555")
if err != nil {
panic(err)
}
server.Serve(listen)
}