context_appengine.go 281 B

123456789101112
  1. // Copyright 2017 Manu Martinez-Almeida. All rights reserved.
  2. // Use of this source code is governed by a MIT style
  3. // license that can be found in the LICENSE file.
  4. //go:build appengine
  5. // +build appengine
  6. package gin
  7. func init() {
  8. defaultPlatform = PlatformGoogleAppEngine
  9. }