14 lines
236 B
Go
Raw Normal View History

2025-02-16 11:41:36 +08:00
package service
type HelloService interface {
Hello(request *HelloRequest, response *HelloResponse) error
}
type HelloRequest struct {
MyName string `json:"my_name"`
}
type HelloResponse struct {
Message string `json:"message"`
}