-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f14a73
commit 375aa7c
Showing
9 changed files
with
106 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
module github.com/a-h/rest/examples/chiexample | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.22.2 | ||
|
||
replace github.com/a-h/rest v0.0.0 => ../../ | ||
|
||
require ( | ||
github.com/a-h/respond v0.0.2 | ||
github.com/a-h/rest v0.0.0 | ||
github.com/getkin/kin-openapi v0.114.0 | ||
github.com/go-chi/chi/v5 v5.0.8 | ||
github.com/getkin/kin-openapi v0.124.0 | ||
github.com/go-chi/chi/v5 v5.0.12 | ||
) | ||
|
||
require ( | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.5 // indirect | ||
github.com/invopop/yaml v0.1.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/invopop/yaml v0.2.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/perimeterx/marshmallow v1.1.4 // indirect | ||
golang.org/x/exp v0.0.0-20230210204819-062eb4c674ab // indirect | ||
golang.org/x/mod v0.6.0 // indirect | ||
golang.org/x/sys v0.1.0 // indirect | ||
golang.org/x/tools v0.2.0 // indirect | ||
github.com/perimeterx/marshmallow v1.1.5 // indirect | ||
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.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
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,27 +1,29 @@ | ||
module github.com/a-h/rest/examples/offline | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.22.2 | ||
|
||
replace github.com/a-h/rest v0.0.0 => ../../ | ||
|
||
require ( | ||
github.com/a-h/respond v0.0.2 | ||
github.com/a-h/rest v0.0.0 | ||
github.com/getkin/kin-openapi v0.114.0 | ||
github.com/getkin/kin-openapi v0.124.0 | ||
) | ||
|
||
require ( | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.5 // indirect | ||
github.com/invopop/yaml v0.1.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/invopop/yaml v0.2.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/perimeterx/marshmallow v1.1.4 // indirect | ||
golang.org/x/exp v0.0.0-20230210204819-062eb4c674ab // indirect | ||
golang.org/x/mod v0.6.0 // indirect | ||
golang.org/x/sys v0.1.0 // indirect | ||
golang.org/x/tools v0.2.0 // indirect | ||
github.com/perimeterx/marshmallow v1.1.5 // indirect | ||
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.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
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,27 +1,29 @@ | ||
module github.com/a-h/rest/examples/stdlib | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.22.2 | ||
|
||
replace github.com/a-h/rest v0.0.0 => ../../ | ||
|
||
require ( | ||
github.com/a-h/respond v0.0.2 | ||
github.com/a-h/rest v0.0.0 | ||
github.com/getkin/kin-openapi v0.114.0 | ||
github.com/getkin/kin-openapi v0.124.0 | ||
) | ||
|
||
require ( | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.5 // indirect | ||
github.com/invopop/yaml v0.1.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/invopop/yaml v0.2.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/perimeterx/marshmallow v1.1.4 // indirect | ||
golang.org/x/exp v0.0.0-20230210204819-062eb4c674ab // indirect | ||
golang.org/x/mod v0.6.0 // indirect | ||
golang.org/x/sys v0.1.0 // indirect | ||
golang.org/x/tools v0.2.0 // indirect | ||
github.com/perimeterx/marshmallow v1.1.5 // indirect | ||
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.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
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
Oops, something went wrong.