Tree Browser Work

This commit is contained in:
2026-02-05 11:46:41 -06:00
parent 687e64e701
commit 367d62ff00
8 changed files with 286 additions and 39 deletions

View File

@@ -41,6 +41,7 @@ var (
Name = "expds"
cfgFile string
ConfigDir = ""
debug = false
rootCmd = &cobra.Command{
Use: "expds",
Short: "Utility to edit and view PDS",
@@ -60,6 +61,7 @@ func Execute() {
func init() {
cobra.OnInitialize(initConfig)
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file")
rootCmd.PersistentFlags().BoolVarP(&debug, "debug", "d", false, "debug mode")
}
func initConfig() {