Tamal Saha 171b359877 Use gitea forked macaron (#7933) | hace 5 años | |
---|---|---|
.. | ||
.drone.yml | hace 5 años | |
.gitignore | hace 5 años | |
LICENSE | hace 5 años | |
README.md | hace 5 años | |
context.go | hace 5 años | |
go.mod | hace 5 años | |
go.sum | hace 5 años | |
logger.go | hace 5 años | |
macaron.go | hace 5 años | |
macaronlogo.png | hace 5 años | |
recovery.go | hace 5 años | |
render.go | hace 5 años | |
response_writer.go | hace 5 años | |
return_handler.go | hace 5 años | |
router.go | hace 5 años | |
static.go | hace 5 años | |
tree.go | hace 5 años | |
util_go17.go | hace 5 años | |
util_go18.go | hace 5 años |
Package macaron is a high productive and modular web framework in Go.
The minimum requirement of Go is 1.6.
To install Macaron:
go get gitea.com/macaron/macaron
The very basic usage of Macaron:
package main
import "gitea.com/macaron/macaron"
func main() {
m := macaron.Classic()
m.Get("/", func() string {
return "Hello world!"
})
m.Run()
}
Middlewares allow you easily plugin/unplugin features for your Macaron applications.
There are already many middlewares to simplify your work:
This project is under the Apache License, Version 2.0. See the LICENSE file for the full license text.