(title string, items []multiSelectItem)
| 33 | } |
| 34 | |
| 35 | func newMultiSelectModel(title string, items []multiSelectItem) multiSelectModel { |
| 36 | return multiSelectModel{ |
| 37 | title: title, |
| 38 | items: items, |
| 39 | pageSize: defaultPageSize, |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | func (m multiSelectModel) Init() tea.Cmd { return nil } |
| 44 |
no outgoing calls