Add system-cli and an user-merging tool

This commit is contained in:
Denis Arh
2019-02-04 10:15:38 +01:00
parent 7115949354
commit c697c86ee5
15 changed files with 444 additions and 17 deletions
+13
View File
@@ -0,0 +1,13 @@
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()
}