diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-02-14 04:45:11 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-02-14 04:45:11 +0300 |
commit | 72b336a5f5641adcfa535270862191d9072dba3c (patch) | |
tree | e65f5568ac7480b12bced13dee680b9d76890fbb /telegram/commands.go | |
parent | 915c40f1eed6ba139323c0fa15eed4ed3792f34b (diff) |
Support ! prefix for commands in addition to /
Diffstat (limited to 'telegram/commands.go')
-rw-r--r-- | telegram/commands.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/telegram/commands.go b/telegram/commands.go index 61cd2f9..d7318d0 100644 --- a/telegram/commands.go +++ b/telegram/commands.go @@ -138,6 +138,7 @@ func helpString(ht helpType) string { str.WriteString("\n") } } + str.WriteString("\nYou may use ! instead of / if it conflicts with internal commands of a client") return str.String() } |