-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommands.go
64 lines (58 loc) · 1.62 KB
/
commands.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import "github.com/bwmarrin/discordgo"
var all_commands []*discordgo.ApplicationCommand = []*discordgo.ApplicationCommand{
{
Name: "mensa",
Description: "Yields the menu of the Mensa INF 306.",
},
{
Name: "impressum",
Description: "Reveals the src code and its coder.",
},
{
Name: "terminal",
Description: "Execute the given line and yields result.",
Options: []*discordgo.ApplicationCommandOption{
{
Name: "passw",
Description: "Password for authentification.",
Type: discordgo.ApplicationCommandOptionString,
Required: true,
},
{
Name: "prog",
Description: "Program executed in the console",
Type: discordgo.ApplicationCommandOptionString,
Required: true,
// Commands might have choices, think of them like of enum values
},
{
Name: "addargs",
Description: "Additional arguments executed after the program",
Type: discordgo.ApplicationCommandOptionString,
Required: false,
// Commands might have choices, think of them like of enum values
},
},
},
{
Name: "test-command",
Description: "Testing message returns via functions",
},
{
Name: "basic-command-with-files",
Description: "Basic command with files",
},
{
Name: "b-field",
Description: "Plot the local magnetic field of my room.",
},
{
Name: "long",
Description: "Long Running Command to see how it handles",
},
{
Name: "ozon",
Description: "Returns the current ozon value for Heidelberg from the Landesanstalt für Umwelt Baden-Württemberg",
},
}