Tamal Saha 171b359877 Use gitea forked macaron (#7933) | před 5 roky | |
---|---|---|
.. | ||
.drone.yml | před 5 roky | |
.gitignore | před 5 roky | |
LICENSE | před 5 roky | |
README.md | před 5 roky | |
context.go | před 5 roky | |
go.mod | před 5 roky | |
go.sum | před 5 roky | |
logger.go | před 5 roky | |
macaron.go | před 5 roky | |
macaronlogo.png | před 5 roky | |
recovery.go | před 5 roky | |
render.go | před 5 roky | |
response_writer.go | před 5 roky | |
return_handler.go | před 5 roky | |
router.go | před 5 roky | |
static.go | před 5 roky | |
tree.go | před 5 roky | |
util_go17.go | před 5 roky | |
util_go18.go | před 5 roky |
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.