-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconst.go
More file actions
32 lines (30 loc) · 729 Bytes
/
const.go
File metadata and controls
32 lines (30 loc) · 729 Bytes
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
package monerotipbot
const (
// START command for starting the bot
START = string(iota + 1)
// HELP command for showing usage of bot
HELP
// TIP command for tipping users
TIP
// SEND command for making normal transactions
SEND
// GIVEAWAY command for giveaways
GIVEAWAY
// WITHDRAW command for withdraws
WITHDRAW
// BALANCE command for showing wallet balance
BALANCE
// GENERATEQR command for generating QR-Codes (images)
GENERATEQR
)
// COMMANDS defines all Telegram commands this bot has
var COMMANDS = map[string]string{
START: "start",
HELP: "help",
TIP: "tip",
SEND: "send",
GIVEAWAY: "giveaway",
WITHDRAW: "withdraw",
BALANCE: "balance",
GENERATEQR: "generateqr",
}