Documentation ¶
Index ¶
- type AddCoinLogic
- type AddErrorCodeLogic
- type AddSymbolLogic
- type GetCoinListLogic
- type GetErrorCodeListLogic
- type GetMatchListLogic
- type GetServiceConfigLogic
- type GetSymbolListLogic
- type LoginLogic
- type RegisterLogic
- type SyncCoinConfigLogic
- type SyncErrorCodeLogic
- type SyncSymbolConfigLogic
- type UpdateCoinLogic
- type UpdateErrorCodeLogic
- type UpdateSymbolLogic
- type UpsertServiceConfigLogic
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddCoinLogic ¶
func NewAddCoinLogic ¶
func NewAddCoinLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AddCoinLogic
func (*AddCoinLogic) AddCoin ¶
func (l *AddCoinLogic) AddCoin(req *types.AddCoinReq) (resp *types.AddCoinResp, err error)
type AddErrorCodeLogic ¶
func NewAddErrorCodeLogic ¶
func NewAddErrorCodeLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AddErrorCodeLogic
func (*AddErrorCodeLogic) AddErrorCode ¶
func (l *AddErrorCodeLogic) AddErrorCode(req *types.AddErrorCodeReq) (resp *types.Empty, err error)
type AddSymbolLogic ¶
func NewAddSymbolLogic ¶
func NewAddSymbolLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AddSymbolLogic
func (*AddSymbolLogic) AddSymbol ¶
func (l *AddSymbolLogic) AddSymbol(req *types.AddSymbolReq) (resp *types.AddSymbolResp, err error)
type GetCoinListLogic ¶
func NewGetCoinListLogic ¶
func NewGetCoinListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetCoinListLogic
func (*GetCoinListLogic) GetCoinList ¶
func (l *GetCoinListLogic) GetCoinList(req *types.GetCoinListReq) (resp *types.GetCoinListResp, err error)
type GetErrorCodeListLogic ¶
func NewGetErrorCodeListLogic ¶
func NewGetErrorCodeListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetErrorCodeListLogic
func (*GetErrorCodeListLogic) GetErrorCodeList ¶
func (l *GetErrorCodeListLogic) GetErrorCodeList(req *types.GetErrorCodeListReq) (resp *types.GetErrorCodeListResp, err error)
type GetMatchListLogic ¶ added in v1.2.0
func NewGetMatchListLogic ¶ added in v1.2.0
func NewGetMatchListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetMatchListLogic
func (*GetMatchListLogic) GetMatchList ¶ added in v1.2.0
func (l *GetMatchListLogic) GetMatchList(req *types.GetMatchListReq) (resp *types.GetMatchListResp, err error)
type GetServiceConfigLogic ¶
func NewGetServiceConfigLogic ¶
func NewGetServiceConfigLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetServiceConfigLogic
func (*GetServiceConfigLogic) GetServiceConfig ¶
func (l *GetServiceConfigLogic) GetServiceConfig(req *types.GetServiceConfigReq) (resp *types.GetServiceConfigResp, err error)
type GetSymbolListLogic ¶
func NewGetSymbolListLogic ¶
func NewGetSymbolListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetSymbolListLogic
func (*GetSymbolListLogic) GetSymbolList ¶
func (l *GetSymbolListLogic) GetSymbolList(req *types.GetSymbolListReq) (resp *types.GetSymbolListResp, err error)
type LoginLogic ¶
func NewLoginLogic ¶
func NewLoginLogic(ctx context.Context, svcCtx *svc.ServiceContext) *LoginLogic
type RegisterLogic ¶
func NewRegisterLogic ¶
func NewRegisterLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RegisterLogic
func (*RegisterLogic) Register ¶
func (l *RegisterLogic) Register(req *types.RegisterReq) (resp *types.Empty, err error)
type SyncCoinConfigLogic ¶ added in v1.2.0
func NewSyncCoinConfigLogic ¶ added in v1.2.0
func NewSyncCoinConfigLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SyncCoinConfigLogic
func (*SyncCoinConfigLogic) SyncCoinConfig ¶ added in v1.2.0
type SyncErrorCodeLogic ¶ added in v1.2.0
func NewSyncErrorCodeLogic ¶ added in v1.2.0
func NewSyncErrorCodeLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SyncErrorCodeLogic
func (*SyncErrorCodeLogic) SyncErrorCode ¶ added in v1.2.0
type SyncSymbolConfigLogic ¶ added in v1.2.0
func NewSyncSymbolConfigLogic ¶ added in v1.2.0
func NewSyncSymbolConfigLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SyncSymbolConfigLogic
func (*SyncSymbolConfigLogic) SyncSymbolConfig ¶ added in v1.2.0
type UpdateCoinLogic ¶
func NewUpdateCoinLogic ¶
func NewUpdateCoinLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateCoinLogic
func (*UpdateCoinLogic) UpdateCoin ¶
func (l *UpdateCoinLogic) UpdateCoin(req *types.UpdateCoinReq) (resp *types.Empty, err error)
type UpdateErrorCodeLogic ¶
func NewUpdateErrorCodeLogic ¶
func NewUpdateErrorCodeLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateErrorCodeLogic
func (*UpdateErrorCodeLogic) UpdateErrorCode ¶
func (l *UpdateErrorCodeLogic) UpdateErrorCode(req *types.UpdateErrorCodeReq) (resp *types.Empty, err error)
type UpdateSymbolLogic ¶
func NewUpdateSymbolLogic ¶
func NewUpdateSymbolLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateSymbolLogic
func (*UpdateSymbolLogic) UpdateSymbol ¶
func (l *UpdateSymbolLogic) UpdateSymbol(req *types.UpdateSymbolReq) (resp *types.UpdateSymbolResp, err error)
type UpsertServiceConfigLogic ¶
func NewUpsertServiceConfigLogic ¶
func NewUpsertServiceConfigLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpsertServiceConfigLogic
func (*UpsertServiceConfigLogic) UpsertServiceConfig ¶
func (l *UpsertServiceConfigLogic) UpsertServiceConfig(req *types.UpsertServiceConfigReq) (resp *types.Empty, err error)
Source Files ¶
- add_coin_logic.go
- add_error_code_logic.go
- add_symbol_logic.go
- get_coin_list_logic.go
- get_error_code_list_logic.go
- get_match_list_logic.go
- get_service_config_logic.go
- get_symbol_list_logic.go
- login_logic.go
- register_logic.go
- sync_coin_config_logic.go
- sync_error_code_logic.go
- sync_symbol_config_logic.go
- update_coin_logic.go
- update_error_code_logic.go
- update_symbol_logic.go
- upsert_service_config_logic.go
Click to show internal directories.
Click to hide internal directories.