6c73296012
Makes builds reproducible. Signed-off-by: Roman Khimov <roman@nspcc.ru>
10 lines
187 B
Go
10 lines
187 B
Go
package main
|
|
|
|
// Prefix is a prefix used for environment variables containing gateway
|
|
// configuration.
|
|
const Prefix = "HTTP_GW"
|
|
|
|
var (
|
|
// Version is gateway version.
|
|
Version = "dev"
|
|
)
|