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/flintpackage main
import "github.com/coderianx/flint"
func main() {
    app := flint.NewServer()
    app.Handle("/", func(ctx flint.Context) {
        ctx.String("Hello from Flint!")
    })
    app.Run(":8080")
}This project is licensed under the MIT License - see the LICENSE file for details.
Built with ❤️ using Go

