- Goal was to simplify main.go complexity - Use common structures and interfaces for all vpn providers - Moved files around - Removed some alias models
14 lines
436 B
Go
14 lines
436 B
Go
package constants
|
|
|
|
const (
|
|
// Announcement is a message announcement
|
|
Announcement = "Big code refactor, things may break but I'll fix them quickly!"
|
|
// AnnouncementExpiration is the expiration date of the announcement in format yyyy-mm-dd
|
|
AnnouncementExpiration = "2020-06-25"
|
|
)
|
|
|
|
const (
|
|
// IssueLink is the link for users to use to create issues
|
|
IssueLink = "https://github.com/qdm12/private-internet-access-docker/issues/new"
|
|
)
|