go_dreamfactory/cmd/v2/lib/common/constant.go
2022-08-25 19:22:51 +08:00

29 lines
419 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"
)