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:
+1
-1
@@ -6,7 +6,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/oxker/oxker/internal/config"
|
"github.com/oxker/oxker/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
// CLIArgs represents parsed command-line arguments
|
// CLIArgs represents parsed command-line arguments
|
||||||
|
|||||||
+1
-1
@@ -5,7 +5,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
|
|
||||||
tea "charm.land/bubbletea/v2"
|
tea "charm.land/bubbletea/v2"
|
||||||
"github.com/oxker/oxker/internal/app"
|
"github.com/oxker/oxker/pkg/app"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@@ -21,8 +21,8 @@ import (
|
|||||||
"github.com/creack/pty"
|
"github.com/creack/pty"
|
||||||
"github.com/docker/docker/api/types/container"
|
"github.com/docker/docker/api/types/container"
|
||||||
"github.com/hinshun/vt10x"
|
"github.com/hinshun/vt10x"
|
||||||
"github.com/oxker/oxker/internal/config"
|
"github.com/oxker/oxker/pkg/config"
|
||||||
"github.com/oxker/oxker/internal/docker"
|
"github.com/oxker/oxker/pkg/docker"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ============================================================
|
// ============================================================
|
||||||
Reference in New Issue
Block a user