Skip to content

Commit

Permalink
chore(deps): Updating the module name to be lower case (#26)
Browse files Browse the repository at this point in the history
Updating the module name to be lower case
  • Loading branch information
Jacobbrewer1 authored Oct 20, 2024
1 parent 035b450 commit 0f471eb
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmd/schema/cmd_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/Jacobbrewer1/goschema/pkg/migrations"
"github.com/jacobbrewer1/goschema/pkg/migrations"
"github.com/google/subcommands"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/schema/cmd_generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"log/slog"
"path/filepath"

"github.com/Jacobbrewer1/goschema/pkg/services/generation"
"github.com/google/subcommands"
"github.com/jacobbrewer1/goschema/pkg/services/generation"
)

type generateCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/schema/cmd_migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"os"
"path/filepath"

"github.com/Jacobbrewer1/goschema/pkg/migrations"
"github.com/google/subcommands"
"github.com/jacobbrewer1/goschema/pkg/migrations"
)

type migrateCmd struct {
Expand Down
3 changes: 3 additions & 0 deletions cmd/vault_connector/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Vault Connector

This app is primarily designed to be used in the CICD that prints a connection string for the database.
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/Jacobbrewer1/goschema
module github.com/jacobbrewer1/goschema

go 1.22

Expand Down
2 changes: 1 addition & 1 deletion pkg/services/generation/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"strings"

"github.com/Jacobbrewer1/goschema/pkg/models"
"github.com/jacobbrewer1/goschema/pkg/models"
"github.com/pingcap/tidb/ast"
"github.com/pingcap/tidb/parser"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/services/generation/template_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"text/template"

"github.com/Jacobbrewer1/goschema/pkg/models"
"github.com/huandu/xstrings"
"github.com/jacobbrewer1/goschema/pkg/models"
)

// Helpers defines the map of functions exposed to generation templates
Expand Down
2 changes: 1 addition & 1 deletion pkg/services/generation/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"text/template"

"github.com/Jacobbrewer1/goschema/pkg/models"
"github.com/jacobbrewer1/goschema/pkg/models"
"github.com/Masterminds/sprig"
"github.com/huandu/xstrings"
)
Expand Down

0 comments on commit 0f471eb

Please sign in to comment.