mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-02-05 07:58:32 -06:00
15 lines
348 B
Go
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"
|