-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(path): update route format to use curly braces
Update route path format in example to use curly braces instead of colon syntax to match fastglue v1.8.1 router requirements
- Loading branch information
Karan Sharma
committed
Jan 7, 2025
1 parent
da5ef87
commit 2d343ec
Showing
3 changed files
with
33 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
module github.com/zerodha/fastglue-metrics | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/VictoriaMetrics/metrics v1.23.1 | ||
github.com/valyala/fasthttp v1.44.0 | ||
github.com/zerodha/fastglue v1.7.1 | ||
github.com/VictoriaMetrics/metrics v1.35.1 | ||
github.com/valyala/fasthttp v1.58.0 | ||
github.com/zerodha/fastglue v1.8.1 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/andybalholm/brotli v1.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fasthttp/router v1.4.16 // indirect | ||
github.com/klauspost/compress v1.15.15 // indirect | ||
github.com/fasthttp/router v1.5.4 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/savsgio/gotils v0.0.0-20230203094617-bcbc01813b4f // indirect | ||
github.com/stretchr/testify v1.8.1 // indirect | ||
github.com/savsgio/gotils v0.0.0-20240704082632-aef3928b8a38 // indirect | ||
github.com/stretchr/testify v1.10.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fastrand v1.1.0 // indirect | ||
github.com/valyala/histogram v1.2.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters