Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
willshi-Silot committed Mar 17, 2022
1 parent 43fcf90 commit 0ae76e1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions v2/delivery/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -451,3 +451,13 @@ func (c *Client) NewChangePositionModeService() *ChangePositionModeService {
func (c *Client) NewGetPositionModeService() *GetPositionModeService {
return &GetPositionModeService{c: c}
}

// NewCreateBatchOrdersService init create batch orders
func (c *Client) NewCreateBatchOrdersService() *CreateBatchOrdersService {
return &CreateBatchOrdersService{c: c}
}

// NewCancelMultiplesOrdersService init get position mode service
func (c *Client) NewCancelMultiplesOrdersService() *CancelMultiplesOrdersService {
return &CancelMultiplesOrdersService{c: c}
}

0 comments on commit 0ae76e1

Please sign in to comment.