forked from TrueCloudLab/frostfs-node
9a86fff7e0
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
27 lines
564 B
Go
27 lines
564 B
Go
package misc
|
|
|
|
const (
|
|
// NodeName is a neofs node application name.
|
|
NodeName = "neofs-node"
|
|
|
|
// Prefix is a neofs node application prefix.
|
|
Prefix = "neofs"
|
|
|
|
// 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 (
|
|
// Build is an application build time.
|
|
Build = "now"
|
|
|
|
// Version is an application version.
|
|
Version = "dev"
|
|
|
|
// Debug is an application debug mode flag.
|
|
Debug = "false"
|
|
)
|