go_dreamfactory/cmd/v2/lib/common/constant.go
2022-08-18 18:52:22 +08:00

28 lines
382 B
Go

package common
type (
WindowAspect int64
WindowMode int64
WindowAction int64
)
const (
WindowAspect_Normal WindowAspect = iota
WindowAspect_FullScreen
)
const (
DEFAULT_RESOURCE_PATH = "resources"
)
const (
CONFIG_SERVICE_NAME = "name"
CONFIG_SERVICE_URL = "url"
)
const (
BOLTDB_NAME = "my.db"
BOLTDB_BUCKETNAME = "robotBucket"
BUCKET_CONF = "gen"
)