9 lines
276 B
Go
9 lines
276 B
Go
//go:build !staging && !production
|
|
|
|
package appenv
|
|
|
|
// Environment is the deployment environment baked in at compile time.
|
|
// Development is the default; build with `-tags staging` or `-tags production`
|
|
// to select another environment.
|
|
const Environment = EnvTypeDevelopment
|