Replace all 8 instances of fmt.Errorf across parser.go, html.go, and video.go with coreerr.E() from forge.lthn.ai/core/go-log for consistent error handling. Add dependency on go-log v0.0.4. Co-Authored-By: Virgil <virgil@lethean.io>
15 lines
378 B
Modula-2
15 lines
378 B
Modula-2
module forge.lthn.ai/core/go-session
|
|
|
|
go 1.26.0
|
|
|
|
require (
|
|
forge.lthn.ai/core/go-log v0.0.4
|
|
github.com/stretchr/testify v1.11.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|