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(c flint.Context) {
ctx.String(200, "Hello from Flint!")
})
app.Run(":8080")
}
Built with ❤️ using Go