Skip to content

Commit

Permalink
Updating workflow and module ref after transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
ehutchllew committed Apr 2, 2024
1 parent 1a2a36e commit e598c84
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions cmd/root.cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down Expand Up @@ -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("**********************************************")
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/utils/generateTemplates.util.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ehutchllew/template.ts
module github.com/ev-the-dev/confits

go 1.22

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/ehutchllew/template.ts/cmd"
"github.com/ev-the-dev/confits/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion tui/wizard.tui.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e598c84

Please sign in to comment.