12345678910111213141516 |
- // =================================================================================
- // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package chain
- import (
- "context"
- "birdcall/api/chain/v1"
- )
- type IChainV1 interface {
- NetWork(ctx context.Context, req *v1.NetWorkReq) (res *v1.CommonRes, err error)
- TokenPrice(ctx context.Context, req *v1.TokenPriceReq) (res *v1.CommonRes, err error)
- }
|