2020-07-10 14:17:51 +00:00
|
|
|
package misc
|
|
|
|
|
|
|
|
const (
|
2020-07-24 13:54:03 +00:00
|
|
|
// NodeName is a neofs node application name.
|
2020-07-10 14:17:51 +00:00
|
|
|
NodeName = "neofs-node"
|
|
|
|
|
2020-07-24 13:54:03 +00:00
|
|
|
// Prefix is a neofs node application prefix.
|
2020-07-10 14:17:51 +00:00
|
|
|
Prefix = "neofs"
|
|
|
|
|
2020-07-24 13:54:03 +00:00
|
|
|
// InnerRingName is an inner ring application name.
|
|
|
|
InnerRingName = "neofs-ir"
|
|
|
|
|
|
|
|
// InnerRingPrefix is an inner ring application prefix.
|
|
|
|
InnerRingPrefix = "neofs_ir"
|
|
|
|
)
|
|
|
|
|
|
|
|
// These variables are changed in compile time.
|
|
|
|
var (
|
2020-07-10 14:17:51 +00:00
|
|
|
// Build is an application build time.
|
|
|
|
Build = "now"
|
|
|
|
|
|
|
|
// Version is an application version.
|
|
|
|
Version = "dev"
|
|
|
|
|
|
|
|
// Debug is an application debug mode flag.
|
2020-08-04 14:46:12 +00:00
|
|
|
Debug = "false"
|
2020-07-10 14:17:51 +00:00
|
|
|
)
|