mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
12 lines
358 B
Go
12 lines
358 B
Go
package static
|
|
|
|
// These variables represent the values that may be changed using ldflags
|
|
var (
|
|
Version = "dev"
|
|
EnvironmentVariablePrefix = "PASTY_"
|
|
|
|
// TempFrontendPath defines the path where pasty loads the web frontend from; it will be removed any time soon
|
|
// TODO: Remove this when issue #37 is fixed
|
|
TempFrontendPath = "./web"
|
|
)
|