Browse Source

Le-what?

pull/1/head
Gregory Rudolph 5 years ago
parent
commit
dfe0f0b27a
  1. 2
      cmdDownload.go
  2. 2
      cmdHelp.go
  3. 2
      cmdJoin.go
  4. 2
      cmdReact.go
  5. 2
      cmdStream.go
  6. 2
      cmdUploadFile.go

2
cmdDownload.go

@ -10,7 +10,7 @@ import ( @@ -10,7 +10,7 @@ import (
func init() {
command := Command{
Cmd: []string{"download", "d"},
Description: "/d $messageId $fileName - Download a file to user's downloadpath",
Description: "$messageId $fileName - Download a file to user's downloadpath",
Help: "",
Exec: cmdDownloadFile,
}

2
cmdHelp.go

@ -10,7 +10,7 @@ import ( @@ -10,7 +10,7 @@ import (
func init() {
command := Command{
Cmd: []string{"help", "h"},
Description: "/h Show information about available commands",
Description: "Show information about available commands",
Help: "",
Exec: cmdHelp,
}

2
cmdJoin.go

@ -11,7 +11,7 @@ import ( @@ -11,7 +11,7 @@ import (
func init() {
command := Command{
Cmd: []string{"join", "j"},
Description: "/j $team/user $channel - Join a chat, $user or $team $channel",
Description: "$team/user $channel - Join a chat, $user or $team $channel",
Help: "",
Exec: cmdJoin,
}

2
cmdReact.go

@ -7,7 +7,7 @@ import "strconv" @@ -7,7 +7,7 @@ import "strconv"
func init() {
command := Command{
Cmd: []string{"react", "r", "+"},
Description: "/r $messageId $reaction - React to a message (messageID is optional)",
Description: "$messageId $reaction - React to a message (messageID is optional)",
Help: "",
Exec: cmdReact,
}

2
cmdStream.go

@ -5,7 +5,7 @@ package main @@ -5,7 +5,7 @@ package main
func init() {
command := Command{
Cmd: []string{"stream", "s"},
Description: "/s - Stream all incoming messages",
Description: "- Stream all incoming messages",
Help: "",
Exec: cmdStream,
}

2
cmdUploadFile.go

@ -9,7 +9,7 @@ import ( @@ -9,7 +9,7 @@ import (
func init() {
command := Command{
Cmd: []string{"upload", "u"},
Description: "/u $filePath $fileName - Upload file with optional name",
Description: "$filePath $fileName - Upload file with optional name",
Help: "",
Exec: cmdUploadFile,
}

Loading…
Cancel
Save