diff --git a/cmd/root.cmd.go b/cmd/root.cmd.go index a6b28e0..b3be9cc 100644 --- a/cmd/root.cmd.go +++ b/cmd/root.cmd.go @@ -6,9 +6,9 @@ import ( "os" "path" - "github.com/ehutchllew/template.ts/cmd/models" - "github.com/ehutchllew/template.ts/cmd/utils" - "github.com/ehutchllew/template.ts/tui" + "github.com/ev-the-dev/confits/cmd/models" + "github.com/ev-the-dev/confits/cmd/utils" + "github.com/ev-the-dev/confits/tui" "github.com/spf13/cobra" ) @@ -67,7 +67,7 @@ func init() { func printWelcomeMessage() { fmt.Println("**********************************************") fmt.Println("* *") - fmt.Println("* Welcome to Template.TS! Let's get started. *") + fmt.Println("* Welcome to Confits! Let's get started. *") fmt.Println("* *") fmt.Println("**********************************************") } diff --git a/cmd/utils/generateTemplates.util.go b/cmd/utils/generateTemplates.util.go index 6f9ee06..ad3dde3 100644 --- a/cmd/utils/generateTemplates.util.go +++ b/cmd/utils/generateTemplates.util.go @@ -6,8 +6,8 @@ import ( "sync" "text/template" - "github.com/ehutchllew/template.ts/cmd/models" - ct "github.com/ehutchllew/template.ts/templates" + "github.com/ev-the-dev/confits/cmd/models" + ct "github.com/ev-the-dev/confits/templates" ) // TODO: If package.json already exists: unmarshal, add these changes, then marshal again. That way we don't overwrite entire files. diff --git a/go.mod b/go.mod index 38c5e98..fcc0ded 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ehutchllew/template.ts +module github.com/ev-the-dev/confits go 1.22 diff --git a/main.go b/main.go index 6b68f89..72c0858 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/ehutchllew/template.ts/cmd" + "github.com/ev-the-dev/confits/cmd" ) func main() { diff --git a/tui/wizard.tui.go b/tui/wizard.tui.go index 8ea39d1..e18be02 100644 --- a/tui/wizard.tui.go +++ b/tui/wizard.tui.go @@ -7,7 +7,7 @@ import ( "github.com/charmbracelet/bubbles/textinput" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" - "github.com/ehutchllew/template.ts/cmd/models" + "github.com/ev-the-dev/confits/cmd/models" ) type WizardAnswers struct {