-
- Downloads
fix: context constants must be public
Showing
- constants.go 1 addition, 1 deletionconstants.go
- flake.lock 6 additions, 6 deletionsflake.lock
- go.mod 3 additions, 3 deletionsgo.mod
- go.sum 6 additions, 6 deletionsgo.sum
- http-handler.go 2 additions, 2 deletionshttp-handler.go
- http-handler_test.go 1 addition, 1 deletionhttp-handler_test.go
- nix/config/release.nix 3 additions, 3 deletionsnix/config/release.nix
... | ... | @@ -15,16 +15,16 @@ require ( |
gitlab.schukai.com/oss/libraries/go/network/http-negotiation.git v1.3.4 | ||
gitlab.schukai.com/oss/libraries/go/utilities/pathfinder.git v0.9.5 | ||
gitlab.schukai.com/oss/libraries/go/utilities/watch.git v0.4.2 | ||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 | ||
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/fsnotify/fsnotify v1.8.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
) | ||
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.16 |
Please register or sign in to comment