20 lines
319 B
Go
20 lines
319 B
Go
package etc
|
|
|
|
import (
|
|
"git.sr.ht/~cco/go-scopes"
|
|
"git.sr.ht/~cco/go-scopes/config"
|
|
)
|
|
|
|
func Config() config.Config {
|
|
b := config.MakeBase
|
|
cfg := scopes.Cfg{
|
|
Base: b("dummy", scopes.Start),
|
|
AppType: "standard",
|
|
}
|
|
cfg.Add(config.Cfg{b("config", config.Start), "etc"})
|
|
return &cfg
|
|
}
|
|
|
|
const (
|
|
NAME = "name"
|
|
)
|