hodu/bulletin.go

22 lines
260 B
Go
Raw Normal View History

2025-03-08 15:17:27 +09:00
package hodu
type Message struct {
}
type Subscriber struct {
}
type Bulletin struct {
}
func NewBulletin() *Bulletin {
return &Bulletin{}
}
func (b *Bulletin) Subscribe(topic string) {
}
func (b *Bulletin) Publish(topic string, data interface{}) {
}