dynamo-browse/internal/common/ui/events/errors.go

16 lines
362 B
Go
Raw Normal View History

package events
import (
"github.com/lmika/awstools/internal/common/ui/uimodels"
)
// Error indicates that an error occurred
type Error error
// Message indicates that a message should be shown to the user
type Message string
// PromptForInput indicates that the context is requesting a line of input
type PromptForInput struct {
OnDone uimodels.Operation
}