https://github.com/google/cayley
Raw File
Tip revision: f8e30a82cb7e120f6ca4f4ad2d23a7794b649e0c authored by Willy Aguirre on 25 September 2019, 01:01:31 UTC
docs: update Contributing.md; fixes #782
Tip revision: f8e30a8
main.go
// +build appenginevm

package main

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

import "google.golang.org/appengine"

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