| home | true | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| title | Home | ||||||||||||||||||||||||||||||
| heroImage | https://raw.githubusercontent.com/gominima/minima/main/assets/logo.png | ||||||||||||||||||||||||||||||
| actions |
|
||||||||||||||||||||||||||||||
| features |
|
||||||||||||||||||||||||||||||
| footer | MIT Licensed | Copyright © 2020-present Gominima Team |
# install in your project
go get github.com/gominima/minima
# create a simple file
echo 'package main
import "github.com/gominima/minima"
func main() {
app := minima.New()
app.Get("/"), func(res *minima.Response, req *minima.Request) {
res.OK().Send("Hello World")
})
app.Listen(":3000")
}' > main.go
# start the server
go run main.go