caafd973e4
New config package in storage node does not use application prefix from misc package. Therefore inner ring node can define prefix in local scope. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
13 lines
245 B
Go
13 lines
245 B
Go
package misc
|
|
|
|
// 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"
|
|
)
|