Skip to content

coderianx/Flint

Repository files navigation

Flint Logo

Flint

A blazing fast and lightweight web framework for Go.

Go Reference

Docs

Telegram Channel

Telegram Turkey Channel

X

YouTube


⚡️ What is Flint?

Flint is a simple and minimal backend framework written in Go, made for fast API development with clean structure and easy usage.

🚀 Quick Start

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

Releases

No releases published

Packages

No packages published

Languages