summaryrefslogtreecommitdiff
path: root/command.go
diff options
context:
space:
mode:
Diffstat (limited to 'command.go')
-rw-r--r--command.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/command.go b/command.go
index 15c4858..9f20c45 100644
--- a/command.go
+++ b/command.go
@@ -1,6 +1,7 @@
package main
import (
+ "fmt"
"log"
"strings"
@@ -9,7 +10,7 @@ import (
type Commander interface {
irc.Handler
- Help() string
+ fmt.Stringer
}
const maxLen = 500