bbgo_origin/pkg/datasource/coinmarketcap/datasource.go

14 lines
256 B
Go
Raw Normal View History

2022-05-04 17:32:42 +00:00
package coinmarketcap
import v1 "github.com/c9s/bbgo/pkg/datasource/coinmarketcap/v1"
type DataSource struct {
client *v1.RestClient
}
func New(apiKey string) *DataSource {
client := v1.New()
client.Auth(apiKey)
return &DataSource{client: client}
}