45 lines
909 B
Go
45 lines
909 B
Go
package main
|
|
|
|
import "log"
|
|
import "os"
|
|
import "time"
|
|
|
|
import "github.com/gookit/config"
|
|
import "github.com/andlabs/ui"
|
|
import _ "github.com/andlabs/ui/winmanifest"
|
|
|
|
import "github.com/davecgh/go-spew/spew"
|
|
|
|
// dns
|
|
// import "github.com/miekg/dns"
|
|
|
|
// reminder to use protobuf
|
|
// https://github.com/golang/protobuf
|
|
|
|
// reminder to use this for JSON
|
|
// https://github.com/tidwall/gjson
|
|
// value := gjson.Get(json, "name.last")
|
|
// println(value.String())
|
|
// value := gjson.Get(json, friends.#[last=="Murphy"].first)
|
|
|
|
// use mergo to merge structs
|
|
// import "github.com/imdario/mergo"
|
|
// mergo.Merge(&dest, src)
|
|
|
|
// always sorted slice (new project)
|
|
// https://github.com/yaa110/sslice
|
|
|
|
func main() {
|
|
parseConfig()
|
|
|
|
ui.Main(setupUI)
|
|
|
|
log.Println("Sleep for 1 second")
|
|
time.Sleep(1 * 1000 * 1000 * 1000)
|
|
|
|
f, err := os.Create("/tmp/cloud-control-panel-test")
|
|
spew.Dump(err)
|
|
|
|
config.DumpTo(f, "yaml")
|
|
}
|