阶段性提交

This commit is contained in:
刘祥超
2020-07-21 17:27:00 +08:00
commit f2384a3ae8
38 changed files with 2505 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package node
import (
"context"
"github.com/iwind/TeaGo/logs"
)
type Service struct {
}
func (this *Service) Node(context.Context, *NodeRequest) (*NodeResponse, error) {
logs.Println("you called me")
return &NodeResponse{}, nil
}