chain.go 498 B

12345678910111213141516
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package chain
  5. import (
  6. "context"
  7. "birdcall/api/chain/v1"
  8. )
  9. type IChainV1 interface {
  10. NetWork(ctx context.Context, req *v1.NetWorkReq) (res *v1.CommonRes, err error)
  11. TokenPrice(ctx context.Context, req *v1.TokenPriceReq) (res *v1.CommonRes, err error)
  12. }