package main import ( "fmt" "demo/etc" "git.sr.ht/~cco/go-scopes" "git.sr.ht/~cco/go-scopes/config" ) func main() { fmt.Println(etc.Config().Name()) fmt.Println(etc.Override()["name"]) cfg := config.Setup(etc.Config()) scopes.RunApp(cfg) }