2020-07-03 18:08:57 +03:00
|
|
|
package misc
|
|
|
|
|
2020-12-02 12:46:51 +03:00
|
|
|
const (
|
2021-05-13 23:25:31 +03:00
|
|
|
// ApplicationName is gateway name.
|
2020-12-02 12:46:51 +03:00
|
|
|
ApplicationName = "neofs-s3-gate"
|
2020-07-07 10:07:59 +03:00
|
|
|
|
2021-05-13 23:25:31 +03:00
|
|
|
// Prefix is configuration environment variables prefix.
|
2020-12-02 12:46:51 +03:00
|
|
|
Prefix = "S3_GW"
|
|
|
|
)
|
2020-12-01 10:02:26 +03:00
|
|
|
|
2020-12-02 12:46:51 +03:00
|
|
|
var (
|
2021-05-13 23:25:31 +03:00
|
|
|
// Build holds build timestamp.
|
|
|
|
Build = "now"
|
|
|
|
// Version contains application version.
|
2020-07-03 18:08:57 +03:00
|
|
|
Version = "dev"
|
|
|
|
)
|