19 lines
233 B
Go
19 lines
233 B
Go
|
package dateinput
|
||
|
|
||
|
import tea "github.com/charmbracelet/bubbletea"
|
||
|
|
||
|
type Msg int
|
||
|
|
||
|
const (
|
||
|
NextInputMsg Msg = iota
|
||
|
PrevInputMsg
|
||
|
)
|
||
|
|
||
|
func NextInput() tea.Msg {
|
||
|
return NextInputMsg
|
||
|
}
|
||
|
|
||
|
func PrevInput() tea.Msg {
|
||
|
return PrevInputMsg
|
||
|
}
|