14 lines
405 B
Go
14 lines
405 B
Go
|
|
package constants
|
||
|
|
|
||
|
|
const (
|
||
|
|
// Annoucement is a message annoucement
|
||
|
|
Annoucement = "Total rewrite in Go with many new features"
|
||
|
|
// AnnoucementExpiration is the expiration time of the annoucement in unix timestamp
|
||
|
|
AnnoucementExpiration = 1582761600
|
||
|
|
)
|
||
|
|
|
||
|
|
const (
|
||
|
|
// IssueLink is the link for users to use to create issues
|
||
|
|
IssueLink = "https://github.com/qdm12/private-internet-access-docker/issues/new"
|
||
|
|
)
|