- upd(all): indent spec.json files on all apps - upd(auth): rename auth app to cmd - upd(sam): move orgs, teams to system - upd(system): extend spec.json for check - upd(codegen): include system/ - upd(codegen): always generate spec files - upd(sam): references from auth to system
14 lines
222 B
Go
14 lines
222 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/joho/godotenv/autoload"
|
|
"github.com/namsral/flag"
|
|
)
|
|
|
|
func flags(prefix string, mountFlags ...func(...string)) {
|
|
for _, mount := range mountFlags {
|
|
mount(prefix)
|
|
}
|
|
flag.Parse()
|
|
}
|