-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.go
24 lines (19 loc) · 889 Bytes
/
vars.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
package main
import "os"
const (
projectName = "discord-feedbot"
projectLabel = "DISCORD FEED BOT (DFB)"
projectVersion = "1.0.0-a.230905"
projectNameVersion = projectName + " " + projectVersion
projectColor = "#00FFFF"
projectRepo = "get-got/discord-feedbot"
projectRepoURL = "https://github.com/" + projectRepo
projectReleaseURL = projectRepoURL + "/releases/latest"
projectReleaseApiURL = "https://api.github.com/repos/" + projectRepo + "/releases/latest"
)
var (
pathData = "data"
pathDataCookies = pathData + string(os.PathSeparator) + "cookies" // data/cookies
pathDataCookiesInstagram = pathDataCookies + string(os.PathSeparator) + "instagram.json" // data/cookies/instagram.json
pathDataCookiesTwitter = pathDataCookies + string(os.PathSeparator) + "twitter.json" // data/cookies/twitter.json
)