(p *tea.Program, token string)
| 226 | } |
| 227 | |
| 228 | func SendLoginSuccess(p *tea.Program, token string) { |
| 229 | if p != nil { |
| 230 | p.Send(loginSuccessMsg{Token: token}) |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | func SendLoginError(p *tea.Program, err error) { |
| 235 | if p != nil { |
no outgoing calls
no test coverage detected