diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-22 19:17:57 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-22 19:17:57 +0200 |
| commit | d629558394465b8956285edac324d67688ddd2c1 (patch) | |
| tree | f511cf1ea87d916c11e85243361c366ae9843cd4 /internal/store | |
| parent | 48280e828bc4737a91ed556226f7fdcb52679f87 (diff) | |
Rename binary from geheim to foostore
- go.mod: module path codeberg.org/snonux/geheim → codeberg.org/snonux/foostore
- cmd/geheim/ → cmd/foostore/
- Magefile.go: binary/binaryName/mainPkg constants updated
- internal/config: config file path ~/.config/geheim.json → ~/.config/foostore.json
- All import paths and comments updated throughout
- Delete geheim.rb (the original Ruby implementation, superseded by this Go rewrite)
- CLAUDE.md rewritten to reflect the Go implementation, new binary name,
build system (mage), and current package architecture
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/store')
| -rw-r--r-- | internal/store/data.go | 4 | ||||
| -rw-r--r-- | internal/store/data_test.go | 2 | ||||
| -rw-r--r-- | internal/store/index.go | 4 | ||||
| -rw-r--r-- | internal/store/index_test.go | 2 | ||||
| -rw-r--r-- | internal/store/store.go | 6 | ||||
| -rw-r--r-- | internal/store/store_test.go | 6 |
6 files changed, 12 insertions, 12 deletions
diff --git a/internal/store/data.go b/internal/store/data.go index b9423f2..fb33bf0 100644 --- a/internal/store/data.go +++ b/internal/store/data.go @@ -9,8 +9,8 @@ import ( "path/filepath" "strings" - "codeberg.org/snonux/geheim/internal/crypto" - "codeberg.org/snonux/geheim/internal/git" + "codeberg.org/snonux/foostore/internal/crypto" + "codeberg.org/snonux/foostore/internal/git" ) // Data holds a decrypted secret blob and the paths used to persist it. diff --git a/internal/store/data_test.go b/internal/store/data_test.go index 88b80cd..42721af 100644 --- a/internal/store/data_test.go +++ b/internal/store/data_test.go @@ -8,7 +8,7 @@ import ( "path/filepath" "testing" - "codeberg.org/snonux/geheim/internal/crypto" + "codeberg.org/snonux/foostore/internal/crypto" ) // --- helpers ----------------------------------------------------------------- diff --git a/internal/store/index.go b/internal/store/index.go index 9064971..923082f 100644 --- a/internal/store/index.go +++ b/internal/store/index.go @@ -11,8 +11,8 @@ import ( "path/filepath" "strings" - "codeberg.org/snonux/geheim/internal/crypto" - "codeberg.org/snonux/geheim/internal/git" + "codeberg.org/snonux/foostore/internal/crypto" + "codeberg.org/snonux/foostore/internal/git" ) // Index represents a decrypted .index file and its associated .data path. diff --git a/internal/store/index_test.go b/internal/store/index_test.go index a16d757..57aea8c 100644 --- a/internal/store/index_test.go +++ b/internal/store/index_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "codeberg.org/snonux/geheim/internal/crypto" + "codeberg.org/snonux/foostore/internal/crypto" ) // newTestIndexCipher is a local helper to avoid import cycle via store_test.go. diff --git a/internal/store/store.go b/internal/store/store.go index fe9f132..0dfa5e7 100644 --- a/internal/store/store.go +++ b/internal/store/store.go @@ -19,9 +19,9 @@ import ( "sort" "strings" - "codeberg.org/snonux/geheim/internal/config" - "codeberg.org/snonux/geheim/internal/crypto" - "codeberg.org/snonux/geheim/internal/git" + "codeberg.org/snonux/foostore/internal/config" + "codeberg.org/snonux/foostore/internal/crypto" + "codeberg.org/snonux/foostore/internal/git" ) // Action describes what to do with each matching secret during a Search call. diff --git a/internal/store/store_test.go b/internal/store/store_test.go index 950c010..9670a01 100644 --- a/internal/store/store_test.go +++ b/internal/store/store_test.go @@ -13,9 +13,9 @@ import ( "strings" "testing" - "codeberg.org/snonux/geheim/internal/config" - "codeberg.org/snonux/geheim/internal/crypto" - "codeberg.org/snonux/geheim/internal/git" + "codeberg.org/snonux/foostore/internal/config" + "codeberg.org/snonux/foostore/internal/crypto" + "codeberg.org/snonux/foostore/internal/git" ) // --- test helpers ------------------------------------------------------------ |
