go-forge/go.mod
Snider f84643140e
All checks were successful
Security Scan / security (push) Successful in 7s
Test / test (push) Successful in 1m18s
refactor: replace os.ReadFile/WriteFile/MkdirAll and fmt.Errorf/errors.New with go-io/go-log
- Replace os.ReadFile with coreio.Local.Read in parser.go and generator_test.go
- Replace os.WriteFile with coreio.Local.Write in generator.go
- Replace os.MkdirAll with coreio.Local.EnsureDir in generator.go
- Replace all fmt.Errorf and errors.New with coreerr.E() from go-log
- Add forge.lthn.ai/core/go-io and forge.lthn.ai/core/go-log dependencies

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-16 19:06:48 +00:00

8 lines
126 B
Modula-2

module forge.lthn.ai/core/go-forge
go 1.26.0
require (
forge.lthn.ai/core/go-io v0.1.2
forge.lthn.ai/core/go-log v0.0.3
)