From 8968271c3ba9f158f15c795cc62bc3b791886a95 Mon Sep 17 00:00:00 2001 From: Alex Stevenson Date: Mon, 25 Aug 2025 17:54:32 -0400 Subject: [PATCH] Restructuring a bit... --- main.go => cmd/main/main.go | 2 +- go.mod | 3 ++- {local/records => internal/storage}/records.go | 0 local/.records.go.swp | Bin 1024 -> 0 bytes local/records/go.mod | 3 --- 5 files changed, 3 insertions(+), 5 deletions(-) rename main.go => cmd/main/main.go (98%) rename {local/records => internal/storage}/records.go (100%) delete mode 100644 local/.records.go.swp delete mode 100644 local/records/go.mod 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 63bee61d1eefe6da10c63e1f94581992d0a32646..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1024 zcmYc?$V<%2S1{8vVn6|j9~c=Db5bi%1aWZkDsyqjpbF>YCnx6U7o{fW7o`;IrRSr{ Oj`BuBU^E2i9RdJTw+(dw 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