Renamed module

This commit is contained in:
Eduard Urbach 2023-07-18 21:48:38 +02:00
parent ea449fdc81
commit 0e00f870de
Signed by: eduard
GPG key ID: 49226B848C78F6C8
8 changed files with 41 additions and 13 deletions

View file

@ -1,3 +1,21 @@
# aero
# server
High-performance web framework.
HTTP server.
## Installation
```shell
go get git.akyoto.dev/go/server
```
## Example
```go
s := server.New()
s.Get("/", func(ctx server.Context) error {
return ctx.String("Hello")
})
http.ListenAndServe(":8080", s)
```