forked from TrueCloudLab/frostfs-s3-gw
a399590204
Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
16 lines
287 B
Go
16 lines
287 B
Go
package misc
|
|
|
|
const (
|
|
// ApplicationName is gateway name.
|
|
ApplicationName = "neofs-s3-gw"
|
|
|
|
// Prefix is configuration environment variables prefix.
|
|
Prefix = "S3_GW"
|
|
)
|
|
|
|
var (
|
|
// Build holds build timestamp.
|
|
Build = "now"
|
|
// Version contains application version.
|
|
Version = "dev"
|
|
)
|