17 lines
175 B
Go
17 lines
175 B
Go
package tui
|
|
|
|
type TUIMsg int
|
|
|
|
const (
|
|
NextInputMsg TUIMsg = iota
|
|
PrevInputMsg
|
|
)
|
|
|
|
type ErrMsg struct {
|
|
Err error
|
|
}
|
|
|
|
func (e ErrMsg) Error() string {
|
|
return e.Err.Error()
|
|
}
|