From 7ae8855a075773c50ab8db8ee65bbfa9710f140e Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 22 Feb 2026 09:28:52 +0200 Subject: Add Go project scaffold (task 352) - go.mod with module codeberg.org/snonux/geheim (go 1.22, mage dep) - Magefile.go with Build, Test, Install, Uninstall targets - cmd/geheim/main.go delegating to internal/cli - Stub packages: cli, version, config, crypto, git, store, clipboard, shell - go.sum generated; binary confirmed to build via mage build Co-Authored-By: Claude Sonnet 4.6 --- internal/version/version.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 internal/version/version.go (limited to 'internal/version') diff --git a/internal/version/version.go b/internal/version/version.go new file mode 100644 index 0000000..c7defb0 --- /dev/null +++ b/internal/version/version.go @@ -0,0 +1,5 @@ +// Package version holds the application version string. +package version + +// Version is the current release version of geheim. +const Version = "0.0.0" -- cgit v1.2.3