dynamo-browse/internal/common/ui/dispatcher/iface.go

7 lines
123 B
Go
Raw Normal View History

package dispatcher
import tea "github.com/charmbracelet/bubbletea"
type MessagePublisher interface {
Send(msg tea.Msg)
}