bbgo_origin/bbgo/slack.go
2020-09-19 09:05:06 +08:00

12 lines
186 B
Go

package bbgo
type Notifier interface {
Notify(format string, args ...interface{})
}
type NullNotifier struct{}
func (n *NullNotifier) Notify(format string, args ...interface{}) {
}