Tamal Saha 171b359877 Use gitea forked macaron (#7933) | пре 5 година | |
---|---|---|
.. | ||
.drone.yml | пре 5 година | |
.gitignore | пре 5 година | |
LICENSE | пре 5 година | |
README.md | пре 5 година | |
context.go | пре 5 година | |
go.mod | пре 5 година | |
go.sum | пре 5 година | |
logger.go | пре 5 година | |
macaron.go | пре 5 година | |
macaronlogo.png | пре 5 година | |
recovery.go | пре 5 година | |
render.go | пре 5 година | |
response_writer.go | пре 5 година | |
return_handler.go | пре 5 година | |
router.go | пре 5 година | |
static.go | пре 5 година | |
tree.go | пре 5 година | |
util_go17.go | пре 5 година | |
util_go18.go | пре 5 година |
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.