bbgo_origin/bbgo/slack.go

12 lines
186 B
Go
Raw Normal View History

2020-07-13 05:25:48 +00:00
package bbgo
2020-07-16 07:36:02 +00:00
type Notifier interface {
Notify(format string, args ...interface{})
}
type NullNotifier struct{}
func (n *NullNotifier) Notify(format string, args ...interface{}) {
}