frostfs-node/misc/build.go

14 lines
245 B
Go
Raw Normal View History

package misc
2020-07-24 16:54:03 +03:00
// These variables are changed in compile time.
var (
// Build is an application build time.
Build = "now"
// Version is an application version.
Version = "dev"
// Debug is an application debug mode flag.
Debug = "false"
)