From 0d26d1d37987802f62537cabb5d0e03a97024716 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 20:05:49 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20[code=20health]=20Remove=20depre?= =?UTF-8?q?cated=20version=20and=20build=20info=20helpers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: hobbyistlabs-coder <267281733+hobbyistlabs-coder@users.noreply.github.com> --- cmd/picoclaw/internal/helpers.go | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/cmd/picoclaw/internal/helpers.go b/cmd/picoclaw/internal/helpers.go index b6ab2413c..1ecfbfc08 100644 --- a/cmd/picoclaw/internal/helpers.go +++ b/cmd/picoclaw/internal/helpers.go @@ -29,21 +29,3 @@ func GetConfigPath() string { func LoadConfig() (*config.Config, error) { return config.LoadConfig(GetConfigPath()) } - -// FormatVersion returns the version string with optional git commit -// Deprecated: Use pkg/config.FormatVersion instead -func FormatVersion() string { - return config.FormatVersion() -} - -// FormatBuildInfo returns build time and go version info -// Deprecated: Use pkg/config.FormatBuildInfo instead -func FormatBuildInfo() (string, string) { - return config.FormatBuildInfo() -} - -// GetVersion returns the version string -// Deprecated: Use pkg/config.GetVersion instead -func GetVersion() string { - return config.GetVersion() -}