(client *Client)
| 55 | } |
| 56 | |
| 57 | func newAuthTabModel(client *Client) authTabModel { |
| 58 | ti := textinput.New() |
| 59 | ti.CharLimit = 256 |
| 60 | return authTabModel{ |
| 61 | client: client, |
| 62 | expanded: -1, |
| 63 | confirm: -1, |
| 64 | editInput: ti, |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | func (m authTabModel) Init() tea.Cmd { |
| 69 | return m.fetchFiles |