- A powerful go web framework for highly scalable and resource efficient web application
go get -u github.com/krishpranav/webfr
package main
import (
"github.com/krishpranav/webfr"
)
func main() {
wb := webfr.New()
wb.Get("/hello", func(ctx webfr.Context) {
ctx.SendString("Helo Friends!!")
})
wb.Start(":3000")
}
- for more tutorials visit the docs