Skip to content

A simple Golang web framework base on fasthttp.

License

Notifications You must be signed in to change notification settings

RyanPoy/fastgo3

Repository files navigation

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

About

A simple Golang web framework base on fasthttp.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages