FAQs
How do I integrate with existing servers?
package hello
import (
"net/http"
"gopkg.in/macaron.v1"
)
func init() {
m := macaron.Classic()
m.Get("/", func() string {
return "Hello world!"
})
http.Handle("/", m)
}How do I change the port/host?
How do I graceful shutdown?
How do I pass data in request-level other than service inject?
What's the idea behind this other than Martini?
Why Logo is a dragon?
Live code reload?
Last updated
Was this helpful?