mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 02:00:11 -08:00
formatting
This commit is contained in:
parent
b7ed55d45c
commit
559445d9a8
1 changed files with 2 additions and 1 deletions
|
|
@ -107,7 +107,8 @@ func RplNoTopic(channel *Channel) Reply {
|
||||||
}
|
}
|
||||||
|
|
||||||
func RplTopic(channel *Channel) Reply {
|
func RplTopic(channel *Channel) Reply {
|
||||||
return NewNumericReply(channel.server, RPL_TOPIC, fmt.Sprintf("%s :%s", channel.name, channel.topic))
|
return NewNumericReply(channel.server, RPL_TOPIC,
|
||||||
|
fmt.Sprintf("%s :%s", channel.name, channel.topic))
|
||||||
}
|
}
|
||||||
|
|
||||||
func RplInvitingMsg(channel *Channel, invitee *Client) Reply {
|
func RplInvitingMsg(channel *Channel, invitee *Client) Reply {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue