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