mirror of
https://github.com/labstack/echo.git
synced 2024-11-28 08:38:39 +02:00
updated docs
Signed-off-by: Vishal Rana <vishal.rana@verizon.com>
This commit is contained in:
parent
57c7dccfbf
commit
9918c9b4e9
@ -14,8 +14,8 @@ description = "CORS example for Echo"
|
||||
|
||||
{{< embed "cors/server.go" >}}
|
||||
|
||||
## [Source Code]({{< source "cors" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "cors" >}})
|
||||
|
@ -78,8 +78,8 @@ curl -X DELETE localhost:1323/users/1
|
||||
|
||||
`NoContent - 204`
|
||||
|
||||
## [Source Code]({{< source "crud" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "crud" >}})
|
||||
|
@ -13,9 +13,9 @@ description = "Embed resources example for Echo"
|
||||
|
||||
{{< embed "embed-resources/server.go" >}}
|
||||
|
||||
## [Source Code]({{< source "embed-resources" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [caarlos0](https://github.com/caarlos0)
|
||||
- [maddie](https://github.com/maddie)
|
||||
|
||||
## [Source Code]({{< source "embed-resources" >}})
|
||||
|
@ -35,11 +35,11 @@ description = "File upload example for Echo"
|
||||
|
||||
{{< embed "file-upload/multiple/public/index.html" >}}
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## Source Code
|
||||
|
||||
- [single]({{< source "file-upload/single" >}})
|
||||
- [multiple]({{< source "file-upload/multiple" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
@ -129,8 +129,8 @@ switching between AppEngine provided service such as Datastore and alternative s
|
||||
such as MongoDB. A combination of go interfaces and build constraints can make this fairly straightforward
|
||||
but is outside the scope of this recipe.
|
||||
|
||||
## [Source Code]({{< source "google-app-engine" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [CaptainCodeman](https://github.com/CaptainCodeman)
|
||||
|
||||
## [Source Code]({{< source "google-app-engine" >}})
|
||||
|
@ -17,11 +17,11 @@ property of your Echo instance as needed by doing something like:
|
||||
|
||||
{{< embed "graceful-shutdown/server.go" >}}
|
||||
|
||||
## Source Code
|
||||
|
||||
- [graceful]({{< source "graceful-shutdown/graceful" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [mertenvg](https://github.com/mertenvg)
|
||||
- [apaganobeleno](https://github.com/apaganobeleno)
|
||||
|
||||
## Source Code
|
||||
|
||||
- [graceful]({{< source "graceful-shutdown/graceful" >}})
|
||||
|
@ -13,8 +13,8 @@ description = "Hello world example for Echo"
|
||||
|
||||
{{< embed "hello-world/server.go" >}}
|
||||
|
||||
## [Source Code]({{< source "hello-world" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "hello-world" >}})
|
||||
|
@ -43,8 +43,8 @@ a certificate from [CA](https://en.wikipedia.org/wiki/Certificate_authority).
|
||||
- https://localhost:1323/request (Displays the information about received HTTP request)
|
||||
- https://localhost:1323/stream (Streams the current time every second)
|
||||
|
||||
## [Source Code]({{< source "http2" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "http2" >}})
|
||||
|
@ -21,8 +21,8 @@ JSONP is a method that allows cross-domain server calls. You can read more about
|
||||
|
||||
{{< embed "jsonp/public/index.html" >}}
|
||||
|
||||
## [Source Code]({{< source "jsonp" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [willf](https://github.com/willf)
|
||||
|
||||
## [Source Code]({{< source "jsonp" >}})
|
||||
|
@ -57,13 +57,13 @@ curl localhost:1323/restricted -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR
|
||||
Welcome Jon Snow!
|
||||
```
|
||||
|
||||
## Source Code
|
||||
|
||||
- [With default Map claims]({{< source "jwt/map-claims" >}})
|
||||
- [With custom claims]({{< source "jwt/custom-claims" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
- [axdg](https://github.com/axdg)
|
||||
- [matcornic](https://github.com/matcornic)
|
||||
|
||||
## Source Code
|
||||
|
||||
- [With default Map claims]({{< source "jwt/map-claims" >}})
|
||||
- [With custom claims]({{< source "jwt/custom-claims" >}})
|
||||
|
@ -41,8 +41,8 @@ Server:Echo/2.0
|
||||
}
|
||||
```
|
||||
|
||||
## [Source Code]({{< source "middleware" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "middleware" >}})
|
||||
|
@ -32,8 +32,8 @@ $ curl localhost:1323
|
||||
{"Altitude":15,"Latitude":37.77493,"Longitude":-122.419416}
|
||||
```
|
||||
|
||||
## [Source Code]({{< source "streaming-response" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "streaming-response" >}})
|
||||
|
@ -11,9 +11,9 @@ description = "Subdomains example for Echo"
|
||||
|
||||
{{< embed "subdomains/server.go" >}}
|
||||
|
||||
## [Source Code]({{< source "subdomains" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [axdg](https://github.com/axdg)
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "subdomains" >}})
|
||||
|
@ -51,8 +51,8 @@ Hello, Server!
|
||||
Hello, Server!
|
||||
```
|
||||
|
||||
## [Source Code]({{< source "websocket" >}})
|
||||
|
||||
## Maintainers
|
||||
|
||||
- [vishr](https://github.com/vishr)
|
||||
|
||||
## [Source Code]({{< source "websocket" >}})
|
||||
|
Loading…
Reference in New Issue
Block a user