mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
18 lines
352 B
Go
18 lines
352 B
Go
package bbgo
|
|
|
|
import (
|
|
"github.com/c9s/bbgo/pkg/accounting"
|
|
"github.com/c9s/bbgo/pkg/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{}) {
|
|
}
|