Implement Handler and HandlerFunc, add comprehensive tests

This commit is contained in:
Dan Jones 2025-07-07 21:39:47 -05:00
commit a136616088
5 changed files with 138 additions and 5 deletions

8
go.mod
View file

@ -1,3 +1,11 @@
module codeberg.org/danjones000/ezhandler
go 1.24.2
require github.com/stretchr/testify v1.10.0
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)