forked from TrueCloudLab/frostfs-node
dadfd90dcd
Initial public review release v0.10.0
18 lines
317 B
Go
18 lines
317 B
Go
package misc
|
|
|
|
const (
|
|
// NodeName is an application name.
|
|
NodeName = "neofs-node"
|
|
|
|
// Prefix is an application prefix.
|
|
Prefix = "neofs"
|
|
|
|
// Build is an application build time.
|
|
Build = "now"
|
|
|
|
// Version is an application version.
|
|
Version = "dev"
|
|
|
|
// Debug is an application debug mode flag.
|
|
Debug = "true"
|
|
)
|