frostfs-node/misc/build.go

22 lines
409 B
Go
Raw Normal View History

package misc
const (
2020-07-24 13:54:03 +00:00
// Prefix is a neofs node application prefix.
Prefix = "neofs"
2020-07-24 13:54:03 +00:00
// InnerRingPrefix is an inner ring application prefix.
InnerRingPrefix = "neofs_ir"
)
// 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"
)