https://github.com/google/cayley
Raw File
Tip revision: 27aa062170153f0b786862e3e45d639901d84f8b authored by Paul Severance on 05 February 2017, 20:57:13 UTC
correct expose syntax
Tip revision: 27aa062
main.go
// +build appenginevm
package main

//go:generate ./sync-assets.sh

import "google.golang.org/appengine"

func main() {
	appengine.Main()
}
back to top