A blazing fast and lightweight web framework for Go.
Flint is a simple and minimal backend framework written in Go, made for fast API development with clean structure and easy usage.
go get github.com/coderianx/flint
package main
import "github.com/coderianx/flint"
func main() {
app := flint.NewServer()
app.Handle("/", func(ctx flint.Context) {
ctx.String(200, "Hello from Flint!")
})
app.Run(":8080")
}
Built with ❤️ using Go