We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458c474 commit d20a6a4Copy full SHA for d20a6a4
README.md
@@ -27,6 +27,13 @@ go get github.com/go-openapi/errors
27
## Basic usage
28
29
```go
30
+const url = "https://www.example.com/#"
31
+
32
+errGeneric := New(401,"onvalid argument: %s", url)
33
34
+errNotFound := NotFound("resource not found: %s", url)
35
36
+errNotImplemented := NotImplemented("method: %s", url)
37
```
38
39
## Change log
docs/MAINTAINERS.md
@@ -144,7 +144,7 @@ Standard documentation:
144
145
Reference documentation (released):
146
147
-* [godoc](https://pkg.go/dev/go-openapi/errors)
+* [godoc](https://pkg.go.dev/github.com/go-openapi/errors)
148
149
## TODOs & other ideas
150
0 commit comments