diff --git a/cmd/current.go b/cmd/current.go index 0eb3e5f..aa0af66 100644 --- a/cmd/current.go +++ b/cmd/current.go @@ -6,7 +6,7 @@ package cmd import ( "fmt" - "codeberg.org/danjones000/mpc-plus/mpd" + "codeberg.org/danjones000/mpc-extra/mpd" "github.com/spf13/cobra" ) diff --git a/cmd/find.go b/cmd/find.go index 5bd67ec..44cce00 100644 --- a/cmd/find.go +++ b/cmd/find.go @@ -6,7 +6,7 @@ package cmd import ( "fmt" - "codeberg.org/danjones000/mpc-plus/mpd" + "codeberg.org/danjones000/mpc-extra/mpd" "github.com/spf13/cobra" ) diff --git a/cmd/root.go b/cmd/root.go index 371cda9..a569232 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -14,7 +14,7 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ - Use: "mpc-plus", + Use: "mpc-extra", Short: "A brief description of your application", Long: `A longer description that spans multiple lines and likely contains examples and usage of using your application. For example: @@ -41,7 +41,7 @@ func init() { // Cobra supports persistent flags, which, if defined here, // will be global for your application. - // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.mpc-plus.yaml)") + // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.mpc-extra.yaml)") // Cobra also supports local flags, which will only run // when this action is called directly. diff --git a/go.mod b/go.mod index 18f7c1a..95ff5db 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module codeberg.org/danjones000/mpc-plus +module codeberg.org/danjones000/mpc-extra go 1.20 diff --git a/main.go b/main.go index afc80a2..7f885b5 100644 --- a/main.go +++ b/main.go @@ -4,8 +4,8 @@ Copyright © 2023 NAME HERE package main import ( - "codeberg.org/danjones000/mpc-plus/cmd" - "codeberg.org/danjones000/mpc-plus/mpd" + "codeberg.org/danjones000/mpc-extra/cmd" + "codeberg.org/danjones000/mpc-extra/mpd" ) func main() {