-
Notifications
You must be signed in to change notification settings - Fork 15
/
messages.go
36 lines (25 loc) · 951 Bytes
/
messages.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
package main
import (
_ "embed"
"fmt"
)
//go:embed messages/odd_one_out.md
var oddOneOutMessage string
//go:embed messages/matched.md
var matchedMessage string
//go:embed messages/offboarded.md
var offboardedMessage string
//go:embed messages/intro.md
var introMessage string
//go:embed messages/cookieClub.md
var cookieClubMessage string
//go:embed messages/help.md
var helpMessage string
//go:embed messages/subscribed.md
var subscribeMessage string
//go:embed messages/unsubscribed.md
var unsubscribeMessage string
const notSubscribedMessage string = "You're not subscribed to Pairing Bot <3"
const youreWelcomeMessage string = "You're welcome!"
var writeErrorMessage = fmt.Sprintf("Something went sideways while writing to the database. You should probably ping %v", maintainersMention())
var readErrorMessage = fmt.Sprintf("Something went sideways while reading from the database. You should probably ping %v", maintainersMention())