You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
647 B
36 lines
647 B
1 month ago
|
# json-configure
|
||
|
|
||
|
## usage
|
||
|
|
||
|
```shell
|
||
|
go get
|
||
|
```
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import "log"
|
||
|
|
||
|
type AppConfig struct {
|
||
|
AppName string `json:"app_name"`
|
||
|
AppVersion string `json:"app_version"`
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
configure := AppConfig{
|
||
|
AppName: "aaaaa",
|
||
|
}
|
||
|
cc := ConfigConfigure{
|
||
|
AppName: "json-configure",
|
||
|
ContainerType: BesidesExe,
|
||
|
ConfigureFile: "config.json",
|
||
|
}
|
||
|
cc.Check()
|
||
|
cc.MakeupContainerPath()
|
||
|
log.Println("Configure Container Path:", cc.ContainerPath)
|
||
|
cc.EnsureContainer()
|
||
|
configure = cc.EnsureConfigure(configure).(AppConfig)
|
||
|
log.Println("AppName:", configure.AppName)
|
||
|
log.Println("AppVersion:", configure.AppVersion)
|
||
|
}
|
||
|
```
|