Skip to content

Commit a5682de

Browse files
committed
fix: align module path with published repo
1 parent c4ee81e commit a5682de

26 files changed

+54
-54
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# dbfork
22

3-
[![Go Version](https://img.shields.io/badge/go-1.25.6-00ADD8?logo=go)](https://go.dev/)
4-
[![CI](https://github.com/owner/dbfork/actions/workflows/ci.yml/badge.svg)](https://github.com/owner/dbfork/actions/workflows/ci.yml)
3+
[![Go Version](https://img.shields.io/badge/go-1.25.8-00ADD8?logo=go)](https://go.dev/)
4+
[![CI](https://github.com/Meru143/dbfork/actions/workflows/ci.yml/badge.svg)](https://github.com/Meru143/dbfork/actions/workflows/ci.yml)
55
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](./LICENSE)
66

77
Git-style branching for local Postgres databases.
@@ -19,7 +19,7 @@ Git-style branching for local Postgres databases.
1919
### Go install
2020

2121
```bash
22-
go install github.com/owner/dbfork/cmd/dbfork@latest
22+
go install github.com/Meru143/dbfork/cmd/dbfork@latest
2323
```
2424

2525
### Homebrew
@@ -34,7 +34,7 @@ Download a release archive from the GitHub Releases page and unpack the binary f
3434

3535
```bash
3636
docker-compose up -d
37-
go install github.com/owner/dbfork/cmd/dbfork@latest
37+
go install github.com/Meru143/dbfork/cmd/dbfork@latest
3838
dbfork init
3939
dbfork create feature-add-users
4040
dbfork list

cmd/dbfork/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Package main is the dbfork CLI entry point.
22
package main
33

4-
import "github.com/owner/dbfork/internal/cli"
4+
import "github.com/Meru143/dbfork/internal/cli"
55

66
func main() {
77
cli.Execute()

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/owner/dbfork
1+
module github.com/Meru143/dbfork
22

33
go 1.25.8
44

internal/cli/connect.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99

1010
"github.com/spf13/cobra"
1111

12-
"github.com/owner/dbfork/internal/config"
13-
"github.com/owner/dbfork/internal/postgres"
14-
"github.com/owner/dbfork/internal/state"
12+
"github.com/Meru143/dbfork/internal/config"
13+
"github.com/Meru143/dbfork/internal/postgres"
14+
"github.com/Meru143/dbfork/internal/state"
1515
)
1616

1717
var connectCmd = &cobra.Command{

internal/cli/connect_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strings"
77
"testing"
88

9-
"github.com/owner/dbfork/internal/config"
10-
"github.com/owner/dbfork/internal/state"
9+
"github.com/Meru143/dbfork/internal/config"
10+
"github.com/Meru143/dbfork/internal/state"
1111
)
1212

1313
func TestRunConnectPrintsURLFormat(t *testing.T) {

internal/cli/create.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"github.com/jackc/pgx/v5"
1313
"github.com/spf13/cobra"
1414

15-
"github.com/owner/dbfork/internal/config"
16-
"github.com/owner/dbfork/internal/postgres"
17-
"github.com/owner/dbfork/internal/state"
15+
"github.com/Meru143/dbfork/internal/config"
16+
"github.com/Meru143/dbfork/internal/postgres"
17+
"github.com/Meru143/dbfork/internal/state"
1818
)
1919

2020
var createCmd = &cobra.Command{

internal/cli/create_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010

1111
"github.com/jackc/pgx/v5"
1212

13-
"github.com/owner/dbfork/internal/config"
14-
"github.com/owner/dbfork/internal/postgres"
15-
"github.com/owner/dbfork/internal/state"
13+
"github.com/Meru143/dbfork/internal/config"
14+
"github.com/Meru143/dbfork/internal/postgres"
15+
"github.com/Meru143/dbfork/internal/state"
1616
)
1717

1818
func TestRunCreateCreatesBranchAndSavesState(t *testing.T) {

internal/cli/diff.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"github.com/jackc/pgx/v5"
1111
"github.com/spf13/cobra"
1212

13-
"github.com/owner/dbfork/internal/config"
14-
"github.com/owner/dbfork/internal/output"
15-
"github.com/owner/dbfork/internal/postgres"
16-
"github.com/owner/dbfork/internal/state"
13+
"github.com/Meru143/dbfork/internal/config"
14+
"github.com/Meru143/dbfork/internal/output"
15+
"github.com/Meru143/dbfork/internal/postgres"
16+
"github.com/Meru143/dbfork/internal/state"
1717
)
1818

1919
var diffCmd = &cobra.Command{

internal/cli/diff_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88

99
"github.com/jackc/pgx/v5"
1010

11-
"github.com/owner/dbfork/internal/config"
12-
"github.com/owner/dbfork/internal/postgres"
13-
"github.com/owner/dbfork/internal/state"
11+
"github.com/Meru143/dbfork/internal/config"
12+
"github.com/Meru143/dbfork/internal/postgres"
13+
"github.com/Meru143/dbfork/internal/state"
1414
)
1515

1616
func TestRunDiffPrintsJSON(t *testing.T) {

internal/cli/drop.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"github.com/jackc/pgx/v5"
1212
"github.com/spf13/cobra"
1313

14-
"github.com/owner/dbfork/internal/config"
15-
"github.com/owner/dbfork/internal/postgres"
16-
"github.com/owner/dbfork/internal/state"
14+
"github.com/Meru143/dbfork/internal/config"
15+
"github.com/Meru143/dbfork/internal/postgres"
16+
"github.com/Meru143/dbfork/internal/state"
1717
)
1818

1919
var dropCmd = &cobra.Command{

0 commit comments

Comments
 (0)