A simple Golang web framework base on fasthttp.
fastgo3 does meaning that Fast Go Go Go.
import (
"github.com/RyanPoy/fastgo3"
)
func main() {
app := fastgo3.New()
app.Get("/helloworld", func (ctx *fastgo3.Context) {
ctx.RenderString("hello, world!")
})
app.Run("0.0.0.0", 3030)
}