GITLAB

aarongao / leyoutu_server

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • leyoutu_server
  • Config
  • config.go
  • 58ec1105   new Browse Code ยป
    aarongao
    2020-04-01 15:42:41 +0800  
config.go 313 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package Config

type Config struct {
	TagType        []string
	DbPath         string
	DbName         string
	DbUser         string
	DbPassword     string
	RedisPath      string
	Env            string
	TokenSecret    string
	ServerPort     string
	Version        int64
	SupportVersion int64
}

var Info = Config{}