Files
gluetun/internal/constants/splash.go
Quentin McGaw 7369808b84 Refactor (#174)
- Goal was to simplify main.go complexity
- Use common structures and interfaces for all vpn providers
- Moved files around
- Removed some alias models
2020-06-13 14:08:29 -04:00

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"
)