engine/types/env.go

16 lines
370 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package types
const (
Run_Time_Mode_Dev = iota
Run_Time_Mode_Test
Run_Time_Mode_Pre
Run_Time_Mode_Product
)
type MeshEnv struct {
Workspace string // MESH workspacedefault:bsm
Prefix string // MESH prefixdefault:/usr/local/mesh/
JwtSecretKey string // jwt Secret Keydefault:
RuntimeMode string // Runtime Mode String: dev/test/pre/product
}