forked from TrueCloudLab/frostfs-node
19 lines
317 B
Go
19 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"
|
||
|
)
|