cmd/root.go
changeset 265 05c40b36d3b2
parent 239 605a00e9d1ab
equal deleted inserted replaced
264:8f478162d991 265:05c40b36d3b2
     1 // Copyright © 2017-2018 Mikael Berthe <mikael@lilotux.net>
     1 // Copyright © 2017-2023 Mikael Berthe <mikael@lilotux.net>
     2 //
     2 //
     3 // Licensed under the MIT license.
     3 // Licensed under the MIT license.
     4 // Please see the LICENSE file is this directory.
     4 // Please see the LICENSE file is this directory.
     5 
     5 
     6 package cmd
     6 package cmd
     9 	"os"
     9 	"os"
    10 
    10 
    11 	"github.com/spf13/cobra"
    11 	"github.com/spf13/cobra"
    12 	"github.com/spf13/viper"
    12 	"github.com/spf13/viper"
    13 
    13 
    14 	"github.com/McKael/madon/v2"
    14 	"github.com/McKael/madon/v3"
    15 )
    15 )
    16 
    16 
    17 // AppName is the CLI application name
    17 // AppName is the CLI application name
    18 const AppName = "madonctl"
    18 const AppName = "madonctl"
    19 
    19