(file *ini.File)
| 91 | } |
| 92 | |
| 93 | func LoadGin(file *ini.File) { |
| 94 | HttpHost = file.Section("Gin").Key("HttpHost").String() |
| 95 | HttpPort = file.Section("Gin").Key("HttpPort").String() |
| 96 | wg.Done() |
| 97 | } |
| 98 | |
| 99 | func LoadService(file *ini.File) { |
| 100 | UserServiceAddress = file.Section("Service").Key("UserServiceAddress").String() |