mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +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 {
|
|
}
|