Skip to content
This repository has been archived by the owner on Nov 28, 2021. It is now read-only.

Commit

Permalink
Use own package name (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
6543 authored Oct 18, 2021
1 parent 96ffc87 commit b40ca7b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
togo
4 changes: 2 additions & 2 deletions action_ddl.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"github.com/urfave/cli"

"github.com/bradrydzewski/togo/parser"
"github.com/bradrydzewski/togo/template"
"github.com/woodpecker-ci/togo/parser"
"github.com/woodpecker-ci/togo/template"
)

type migration struct {
Expand Down
2 changes: 1 addition & 1 deletion action_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/bmatcuk/doublestar"
"github.com/urfave/cli"

"github.com/bradrydzewski/togo/template"
"github.com/woodpecker-ci/togo/template"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion action_httptest.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/bmatcuk/doublestar"
"github.com/urfave/cli"

"github.com/bradrydzewski/togo/template"
"github.com/woodpecker-ci/togo/template"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion action_i18n.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/urfave/cli"

"github.com/bradrydzewski/togo/template"
"github.com/woodpecker-ci/togo/template"
)

type (
Expand Down
4 changes: 2 additions & 2 deletions action_sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"github.com/urfave/cli"

"github.com/bradrydzewski/togo/parser"
"github.com/bradrydzewski/togo/template"
"github.com/woodpecker-ci/togo/parser"
"github.com/woodpecker-ci/togo/template"
)

type sqlParams struct {
Expand Down
2 changes: 1 addition & 1 deletion action_tmpl.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/urfave/cli"

"github.com/bradrydzewski/togo/template"
"github.com/woodpecker-ci/togo/template"
)

type (
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ func main() {
app := cli.NewApp()
app.Name = "togo"
app.Usage = "togo provides tools to convert files to go"
app.Version = "1.0.0"
app.Author = "bradrydzewski"
app.Version = "dev"
app.Author = "Woodpecker Authors"
app.Commands = []cli.Command{
ddlCommand,
sqlCommand,
Expand Down

0 comments on commit b40ca7b

Please sign in to comment.