Google app engine 可以在appengine上使用martini框架吗

Google app engine 可以在appengine上使用martini框架吗,google-app-engine,go,Google App Engine,Go,可以在谷歌的应用程序引擎上使用吗?有人举个例子吗?在走这条路之前,我应该注意到什么?提前感谢。只要马提尼不使用cgo或不安全的和系统调用软件包。 包含将马提尼与GAE结合使用的示例: 将第三方软件包与app engine一起使用的另一个示例是 package hello import ( "net/http" "github.com/go-martini/martini" ) func init() { m := martini.Classic() m.Get("/", fu

可以在谷歌的应用程序引擎上使用吗?有人举个例子吗?在走这条路之前,我应该注意到什么?提前感谢。

只要马提尼不使用cgo或
不安全的
系统调用
软件包。
包含将马提尼与GAE结合使用的示例:

将第三方软件包与app engine一起使用的另一个示例是

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)
}