refactor: move internal/ to pkg/ for external importability

Moves all packages from internal/ to pkg/ so they can be imported
by external modules (needed for claude-pm integration).

- internal/app/ → pkg/app/
- internal/docker/ → pkg/docker/
- internal/config/ → pkg/config/
- internal/utils/ → pkg/utils/

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Niko Syring
2026-03-12 07:05:59 +01:00
parent 51c9bfb704
commit aac139368f
9 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"os"
"path/filepath"
"github.com/oxker/oxker/internal/config"
"github.com/oxker/oxker/pkg/config"
)
// CLIArgs represents parsed command-line arguments
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"os"
tea "charm.land/bubbletea/v2"
"github.com/oxker/oxker/internal/app"
"github.com/oxker/oxker/pkg/app"
)
func main() {