Renamed module
This commit is contained in:
22
README.md
22
README.md
@ -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)
|
||||
```
|
Reference in New Issue
Block a user