mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-17 12:33:53 +00:00
14 lines
211 B
Go
14 lines
211 B
Go
|
package v3
|
||
|
|
||
|
import (
|
||
|
"github.com/c9s/requestgen"
|
||
|
|
||
|
"github.com/c9s/bbgo/pkg/exchange/bybit/bybitapi"
|
||
|
)
|
||
|
|
||
|
type APIResponse = bybitapi.APIResponse
|
||
|
|
||
|
type Client struct {
|
||
|
Client requestgen.AuthenticatedAPIClient
|
||
|
}
|