forked from TrueCloudLab/frostfs-http-gw
df3c87af79
Some of this code is going to be moved to SDK library, so it's important. Signed-off-by: Roman Khimov <roman@nspcc.ru>
12 lines
253 B
Go
12 lines
253 B
Go
package main
|
|
|
|
// Prefix is a prefix used for environment variables containing gateway
|
|
// configuration.
|
|
const Prefix = "HTTP_GW"
|
|
|
|
var (
|
|
// Build is a timestamp set during gateway build.
|
|
Build = "now"
|
|
// Version is gateway version.
|
|
Version = "dev"
|
|
)
|