* CMDS */
(id serverID, ch, line string)
| 210 | /* CMDS */ |
| 211 | |
| 212 | func sendChanLineCmd(id serverID, ch, line string) tea.Cmd { |
| 213 | return func() tea.Msg { return ircChanLineMsg{id: id, channel: ch, line: line} } |
| 214 | } |
| 215 | func addListItemCmd(it serverEntry) tea.Cmd { return func() tea.Msg { return addListItemMsg{item: it} } } |
| 216 | |
| 217 | /* UPDATE */ |