mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
12 lines
186 B
Go
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{}) {
|
|
}
|
|
|