是否可以在Google的应用引擎上使用http://martini.codegangsta.io?有人有例子吗?在走这条路之前,我应该注意哪些问题?提前谢谢。
答案 0 :(得分:6)
只要马提尼不使用cgo或unsafe
和syscall
包it should be fine。
README of martini包含将带有GAE的马提尼用作@elithar pointed out的示例:
package hello
import (
"net/http"
"github.com/go-martini/martini"
)
func init() {
m := martini.Classic()
m.Get("/", func() string {
return "Hello world!"
})
http.Handle("/", m)
}
使用带有应用引擎的第三方软件包的另一个示例是this randomly chosen app engine example project。