account.go 409 B

1234567891011121314151617
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package account
  5. import (
  6. "context"
  7. "star/api/account/v1"
  8. )
  9. type IAccountV1 interface {
  10. Info(ctx context.Context, req *v1.InfoReq) (res *v1.InfoRes, err error)
  11. }