- 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>
12 lines
237 B
Modula-2
12 lines
237 B
Modula-2
module example.com/simple
|
|
|
|
go 1.24.3
|
|
|
|
require github.com/snider/i18n/i18n v0.0.0
|
|
|
|
require (
|
|
github.com/nicksnyder/go-i18n/v2 v2.4.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
)
|
|
|
|
replace github.com/snider/i18n/i18n => ../../i18n
|