GITLAB

aarongao / leyoutu_server

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • leyoutu_server
  • Config
  • config.go
  • b03775ca   . Browse Code ยป
    aarongao
    2020-03-18 16:11:11 +0800  
config.go 262 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package Config

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

var Info = Config{}