mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-26 16:55:15 +00:00
13 lines
149 B
Go
13 lines
149 B
Go
|
package okex
|
||
|
|
||
|
import (
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
var log = logrus.WithFields(logrus.Fields{
|
||
|
"exchange": "okex",
|
||
|
})
|
||
|
|
||
|
type Exchange struct {
|
||
|
}
|