frostfs-http-gw/misc.go
Roman Khimov df3c87af79 *: fix all comment-related golint warnings
Some of this code is going to be moved to SDK library, so it's important.

Signed-off-by: Roman Khimov <roman@nspcc.ru>
2021-05-13 18:57:42 +03:00

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