From 73c750d317e597f70025fde3e4adf90537b2aff7 Mon Sep 17 00:00:00 2001 From: filifa Date: Sat, 15 Nov 2025 19:34:49 -0500 Subject: [PATCH] move stirling methods to public package --- cmd/stirling.go | 2 +- {internal/lib => lib}/stirling.go | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {internal/lib => lib}/stirling.go (100%) diff --git a/cmd/stirling.go b/cmd/stirling.go index 1a767b9..2533535 100644 --- a/cmd/stirling.go +++ b/cmd/stirling.go @@ -22,7 +22,7 @@ import ( "strconv" "github.com/spf13/cobra" - "scm.dairydemon.net/filifa/mathtools/internal/lib" + "scm.dairydemon.net/filifa/mathtools/lib" ) var firstKind bool diff --git a/internal/lib/stirling.go b/lib/stirling.go similarity index 100% rename from internal/lib/stirling.go rename to lib/stirling.go