forked from TrueCloudLab/frostfs-s3-gw
16 lines
289 B
Go
16 lines
289 B
Go
package misc
|
|
|
|
const (
|
|
// ApplicationName is gateway name.
|
|
ApplicationName = "neofs-s3-gate"
|
|
|
|
// Prefix is configuration environment variables prefix.
|
|
Prefix = "S3_GW"
|
|
)
|
|
|
|
var (
|
|
// Build holds build timestamp.
|
|
Build = "now"
|
|
// Version contains application version.
|
|
Version = "dev"
|
|
)
|