-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Coderian edited this page Aug 16, 2025
·
1 revision
Flint is a web backend framework developed in the Golang language.
Its purpose:
- To be a developer-friendly
- Fast,
- Simple and powerful framework
go get github.com/coderianx/flint
With this command, we include Flint in our project.
package main
import (
"github.com/coderianx/flint"
)
func main() {
app := flint.NewServer()
app.Handle("/", func(ctx *flint.Context) {
ctx.String(200, "Hello Flint")
})
app.Run() // Defaul port: 8080
}
Question: What is Flint focused on?
Answer: Developer focused because developers deserve it so much