(varName string, options []string)
| 149 | } |
| 150 | |
| 151 | func newSelectModel(varName string, options []string) selectModel { |
| 152 | return selectModel{ |
| 153 | varName: varName, |
| 154 | options: options, |
| 155 | cursor: 0, |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | func (m selectModel) Init() tea.Cmd { |
| 160 | return nil |
no outgoing calls
no test coverage detected
searching dependent graphs…