diff --git a/main.go b/cmd/main/main.go similarity index 98% rename from main.go rename to cmd/main/main.go index c91f5f1..6b4a6c7 100644 --- a/main.go +++ b/cmd/main/main.go @@ -5,7 +5,7 @@ import ( "strings" "os" - "git.rdx4.com/monqui/records" + "git.rdx4.com/monqui/storage/internal/storage" "database/sql" _ "github.com/mattn/go-sqlite3" diff --git a/go.mod b/go.mod index c8d5205..a66b8ef 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,6 @@ -module sqlite3_hook +module git.rdx4.com/monqui/storage go 1.18 require github.com/mattn/go-sqlite3 v1.14.28 // indirect + diff --git a/local/records/records.go b/internal/storage/records.go similarity index 100% rename from local/records/records.go rename to internal/storage/records.go diff --git a/local/.records.go.swp b/local/.records.go.swp deleted file mode 100644 index 63bee61..0000000 Binary files a/local/.records.go.swp and /dev/null differ diff --git a/local/records/go.mod b/local/records/go.mod deleted file mode 100644 index 9a3e15b..0000000 --- a/local/records/go.mod +++ /dev/null @@ -1,3 +0,0 @@ -module git.rdx4.com/monqui/records - -go 1.18