mirror of
https://github.com/foomo/posh.git
synced 2025-10-16 12:45:38 +00:00
21 lines
396 B
Go
21 lines
396 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/foomo/posh/pkg/log"
|
|
"github.com/foomo/posh/pkg/plugin"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
l log.Logger
|
|
flagLevel string
|
|
flagNoColor bool
|
|
pluginProvider plugin.Provider
|
|
)
|
|
|
|
// rootCmd represents the base command when called without any subcommands
|
|
var rootCmd = &cobra.Command{
|
|
Use: "posh",
|
|
Short: "Project Oriented Shell (posh)",
|
|
}
|