(p *tea.Program, err error)
| 232 | } |
| 233 | |
| 234 | func SendLoginError(p *tea.Program, err error) { |
| 235 | if p != nil { |
| 236 | p.Send(loginErrorMsg{Err: err}) |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | func SendLoginCancel(p *tea.Program) { |
| 241 | if p != nil { |
no outgoing calls
no test coverage detected