bbgo_origin/pkg/bbgo/livenote.go
2024-11-05 17:34:26 +08:00

27 lines
640 B
Go

package bbgo
import (
"github.com/sirupsen/logrus"
"github.com/c9s/bbgo/pkg/livenote"
)
// PostLiveNote 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) {
if len(Notification.liveNotePosters) == 0 {
logrus.Warn("no live note poster is registered")
return
}
for _, poster := range Notification.liveNotePosters {
if err := poster.PostLiveNote(obj); err != nil {
logrus.WithError(err).Errorf("unable to post live note: %+v", obj)
}
}
}
type LiveNotePoster interface {
PostLiveNote(note livenote.Object) error
}