package bbgo import ( "github.com/sirupsen/logrus" "github.com/c9s/bbgo/pkg/livenote" ) // PostLiveNote a global function helper for strategies to call. // This function posts a live note to slack or other services // The MessageID will be set after the message is posted if it's not set. func PostLiveNote(obj livenote.Object, opts ...livenote.Option) { if len(Notification.liveNotePosters) == 0 { logrus.Warn("no live note poster is registered") return } for _, poster := range Notification.liveNotePosters { if err := poster.PostLiveNote(obj, opts...); err != nil { logrus.WithError(err).Errorf("unable to post live note: %+v", obj) } } } type LiveNotePoster interface { PostLiveNote(note livenote.Object, opts ...livenote.Option) error }