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

8 lines
124 B
Go
Raw Normal View History

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