Notice sends the client a notice from the server.
(text string)
| 1621 | |
| 1622 | // Notice sends the client a notice from the server. |
| 1623 | func (client *Client) Notice(text string) { |
| 1624 | client.Send(nil, client.server.name, "NOTICE", client.Nick(), text) |
| 1625 | } |
| 1626 | |
| 1627 | func (session *Session) Notice(text string) { |
| 1628 | session.Send(nil, session.client.server.name, "NOTICE", session.client.Nick(), text) |
no test coverage detected