go_dreamfactory/cmd/v2/lib/common/constant.go
2022-09-07 15:58:38 +08:00

30 lines
449 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_LUBANCONF = "lubanConf"
BUCKET_SSHCONF = "sshConf"
BUCKET_PBCONF = "pbConf"
)