Initial scaffolding

This commit is contained in:
Gary Kramlich
2021-11-18 01:30:50 -06:00
commit f6493e0d87
7 changed files with 86 additions and 0 deletions

5
globals/globals.go Normal file
View File

@@ -0,0 +1,5 @@
package globals
type Globals struct {
Config string `kong:"flag,name='config',short='c',env='CONFIG',help='The configuration file to use',default='config.yaml'"`
}