frostfs-node/misc/build.go
Stanislav Bogatyrev 246a15de35 cli: Add empty neofs-cli app structure
In the following release `neofs-cli` will be used to directly manage NeoFS Node.
All required definitions and interfaces are also moving from `neofs-api` to
`neofs-node` repository, so it's more convinient to have `neofs-cli` here.

Signed-off-by: Stanislav Bogatyrev <stanislav@nspcc.ru>
2020-10-02 11:25:35 +03:00

28 lines
565 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"
)