Files
Gokapi/internal/environment/BuildVars.go
2021-04-13 14:48:57 +02:00

15 lines
348 B
Go

package environment
/**
Variables that are set during build
*/
// IsDocker has to be true if compiled for the Docker image (auto-generated value)
var IsDocker = "false"
// BuildTime is the time of the build (auto-generated value)
var BuildTime = "Dev Build"
// Builder is the name of builder (auto-generated value)
var Builder = "Manual Build"