You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
421 B

2 weeks ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package hello
  5. import (
  6. "context"
  7. "practice_ArticleVote_Go/api/hello/v1"
  8. )
  9. type IHelloV1 interface {
  10. Hello(ctx context.Context, req *v1.HelloReq) (res *v1.HelloRes, err error)
  11. }