frostfs-node/misc/build.go
Alex Vanin caafd973e4 [#598] misc: Remove global prefixes
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>
2021-06-09 16:20:37 +03:00

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"
)