bbgo_origin/pkg/bbgo/context.go

12 lines
108 B
Go
Raw Normal View History

2020-06-18 10:54:14 +00:00
package bbgo
2020-07-13 16:20:15 +00:00
import (
"sync"
)
2020-07-12 14:52:37 +00:00
2020-10-20 04:24:30 +00:00
// deprecated: legacy context struct
2020-09-07 06:20:03 +00:00
type Context struct {
2020-07-13 16:20:15 +00:00
sync.Mutex
2020-07-11 03:23:48 +00:00
}