- Imported packages from separate repos: - github.com/Snider/config -> pkg/config - github.com/Snider/display -> pkg/display - github.com/Snider/help -> pkg/help - github.com/Snider/i18n -> pkg/i18n - github.com/Snider/updater -> pkg/updater - Moved core code from root to pkg/core - Flattened nested package structures - Updated all import paths to github.com/Snider/Core/pkg/* - Added Display interface to Core - Updated go.work for workspace modules Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
147 B
Text
13 lines
147 B
Text
go 1.25
|
|
|
|
use (
|
|
.
|
|
./cmd/core-gui
|
|
./cmd/examples/core-static-di
|
|
./pkg/config
|
|
./pkg/core
|
|
./pkg/display
|
|
./pkg/help
|
|
./pkg/i18n
|
|
./pkg/updater
|
|
)
|