Categorygithub.com/RyanPoy/fastgo3
repositorypackage
0.0.0-20220118025411-e3e3fc39b984
Repository: https://github.com/ryanpoy/fastgo3.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

fastgo3

A simple Golang web framework base on fasthttp.

fastgo3 does meaning that Fast Go Go Go.

simple usage:

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)
}

more examples