feat: use viper and cobra to parameterize creation values with viper yaml

This commit is contained in:
2023-02-15 19:30:05 +01:00
parent 0019941054
commit c1680106ab
8 changed files with 722 additions and 2 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"log"
"gitlab.com/urkob/go-cert-gen/cmd"
)
func main() {
log.SetFlags(log.Ldate | log.Ltime | log.Lmicroseconds | log.Lshortfile | log.LUTC)
cmd.Execute()
}