| 1234567891011121314151617 |
- package token
- import (
- "github.com/ayn2op/tview"
- "github.com/gdamore/tcell/v3"
- )
- type TokenEvent struct {
- tcell.EventTime
- Token string
- }
- func tokenCommand(token string) tview.Command {
- return func() tview.Event {
- return &TokenEvent{Token: token}
- }
- }
|