2025-08-24 10:05:50 +08:00

9 lines
196 B
Go

package service
import "context"
// RPC 协议,约束服务端的实现,约束 客户端的调用
type HelloService interface {
Hello(ctx context.Context, request string) (string, error)
}