Awesome
Zoox - A Lightweight Web Framework
Installation
To install the package, run:
go get github.com/go-zoox/zoox
Getting Started
package main
import "github.com/go-zoox/zoox"
func main() {
app := zoox.Default()
app.Get("/", func(ctx *zoox.Context) {
ctx.Write([]byte("helloworld"))
})
app.Run(":8080")
}
DevTools
# install
go install github.com/go-zoox/zoox/cmd/zoox@latest
# dev
zoox dev
# build
zoox build
## License
GoZoox is released under the [MIT License](./LICENSE).