Updated documentation

This commit is contained in:
Eduard Urbach 2023-07-22 11:54:13 +02:00
parent 01f8b2d5be
commit 8bf1bc8f32
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

View File

@ -8,14 +8,38 @@ HTTP server.
go get git.akyoto.dev/go/server
```
## Example
## Examples
Init:
```go
s := server.New()
// Add your routes here.
http.ListenAndServe(":8080", s)
```
Static route:
```go
s.Get("/", func(ctx server.Context) error {
return ctx.String("Hello")
})
```
http.ListenAndServe(":8080", s)
Parameter route:
```go
s.Get("/blog/:post", func(ctx server.Context) error {
return ctx.String(ctx.Get("post"))
})
```
Wildcard route:
```go
s.Get("/images/*file", func(ctx server.Context) error {
return ctx.String(ctx.Get("file"))
})
```