main.go 311 B

1234567891011121314151617
  1. // Copyright 2011 Google Inc. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. //go:build appengine
  5. // +build appengine
  6. package internal
  7. import (
  8. "appengine_internal"
  9. )
  10. func Main() {
  11. MainPath = ""
  12. appengine_internal.Main()
  13. }