feat(cli): add config flag

This commit is contained in:
Mathis Maquenne
2024-10-14 16:22:39 +02:00
parent 05e7f56d4e
commit b49334a810
9 changed files with 194 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
package config
type Config struct {
LicenseToken string `mapstructure:"license_token"`
SecretKey string `mapstructure:"secret_key"`
IV string `mapstructure:"iv"`
}
var Cfg Config