Ajouter et implémenter cfg.Bottin.API.Key

This commit is contained in:
Victor Lacasse-Beaudoin 2023-09-16 18:18:19 -04:00
parent ea49f1609f
commit 9b6dd055ef
2 changed files with 8 additions and 1 deletions

View file

@ -22,6 +22,7 @@ type APIConfig struct {
type BottinConfig struct {
API struct {
Host string
Key string
}
}
@ -69,6 +70,12 @@ func RegisterFlags(cmd *cobra.Command) error {
return err
}
// bottin.api.key
if err := RegisterString(cmd, true,
"bottin.api.key", "bottin-api-key", "Bottin API server key", "bottin"); err != nil {
return err
}
// web.port ; --web-port
cmd.PersistentFlags().Int("web-port", 3183, "Webserver port")
if err := viper.BindPFlag("web.port", cmd.PersistentFlags().Lookup("web-port")); err != nil {