mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
19 lines
345 B
Go
19 lines
345 B
Go
package bbgo
|
|
|
|
import (
|
|
"github.com/c9s/bbgo/accounting"
|
|
"github.com/c9s/bbgo/types"
|
|
)
|
|
|
|
type Notifier interface {
|
|
Notify(format string, args ...interface{})
|
|
NotifyTrade(trade *types.Trade)
|
|
NotifyPnL(report *accounting.ProfitAndLossReport)
|
|
}
|
|
|
|
type NullNotifier struct{}
|
|
|
|
func (n *NullNotifier) Notify(format string, args ...interface{}) {
|
|
}
|
|
|