add delete channel

This commit is contained in:
Chris Lu 2020-05-17 17:42:42 -07:00
parent e0e31e67a8
commit d3925d086c
3 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,5 @@
package msgclient
func (mc *MessagingClient) DeleteChannel(chanName string) error {
return mc.DeleteTopic("chan", chanName)
}