From ffea1a9952f15a6e3d637efe994cda667922ce19 Mon Sep 17 00:00:00 2001 From: Felix Hanley Date: Fri, 5 Feb 2021 19:23:14 +1100 Subject: Rename --- README.md | 4 ++-- example_test.go | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ec3d3b8..177e351 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ A very simple migration library for your Go projects. ## Example usage ```go -import "src.userspace.com.au/go-migrate" -// or import "github.com/felix/go-migrate" +import "src.userspace.com.au/migrate" +// or import "github.com/felix/migrate" db, err := sql.Open("pgx", uri) //db, err := sql.Open("sqlite3", uri) diff --git a/example_test.go b/example_test.go index c381a8b..f28cd4a 100644 --- a/example_test.go +++ b/example_test.go @@ -5,7 +5,7 @@ import ( "embed" "fmt" - "src.userspace.com.au/go-migrate" + "src.userspace.com.au/migrate" ) func ExampleNewFileMigrator() { diff --git a/go.mod b/go.mod index 2e1d466..1891da3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module src.userspace.com.au/go-migrate +module src.userspace.com.au/migrate require github.com/mattn/go-sqlite3 v1.10.0 -- cgit v1.2.3