We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Welcome to the app.go wiki!
To use app.go just copy it to your root folder like this:
/hello - /app <-- here - /hello - app.yaml
The simplest program that runs is a hello world like this:
package hello import "app" function init(){ app.Start() app.Get("/index",Index) } function Index(ctx app.Context){ ctx.Show("index") // index.html }