-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathvars.go
28 lines (24 loc) · 1.11 KB
/
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
25
26
27
28
package main
import (
"os"
)
var (
projectName = "discord-downloader-go"
projectLabel = "Discord Downloader GO"
projectRepoBase = "get-got/discord-downloader-go"
projectRepoURL = "https://github.com/" + projectRepoBase
projectIcon = "https://cdn.discordapp.com/icons/780985109608005703/9dc25f1b91e6d92664590254e0797fad.webp?size=256"
projectVersion = "2.5.4-dev" // follows Semantic Versioning, (http://semver.org/)
pathCache = "cache"
pathCacheHistory = pathCache + string(os.PathSeparator) + "history"
pathCacheSettingsJSON = pathCache + string(os.PathSeparator) + "settings.json"
pathCacheSettingsYAML = pathCache + string(os.PathSeparator) + "settings.yaml"
pathCacheDuplo = pathCache + string(os.PathSeparator) + ".duplo"
pathCacheTwitter = pathCache + string(os.PathSeparator) + "twitter.json"
pathCacheInstagram = pathCache + string(os.PathSeparator) + "instagram.json"
pathConstants = pathCache + string(os.PathSeparator) + "constants.json"
pathDatabaseBase = "database"
pathDatabaseBackups = "backups"
defaultReact = "✅"
limitMsg = 2000
)