Move all Wails-dependent packages to core-gui repo: - pkg/core, pkg/display, pkg/docs, pkg/help, pkg/ide - pkg/runtime, pkg/webview, pkg/workspace, pkg/ws - pkg/plugin, pkg/config, pkg/i18n, pkg/module - pkg/crypt, pkg/io, pkg/process Add pkg/errors with simple E() helper for error wrapping. Update go.work to only include CLI-relevant packages. CLI now builds with CGO_ENABLED=0 - no linker warnings. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
337 B
Modula-2
16 lines
337 B
Modula-2
module github.com/host-uk/core/pkg/agentic
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/host-uk/core/pkg/errors v0.0.0
|
|
github.com/stretchr/testify v1.11.1
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
)
|
|
|
|
replace github.com/host-uk/core/pkg/errors => ../errors
|