...

Source file src/github.com/gin-gonic/gin/context_appengine.go

Documentation: github.com/gin-gonic/gin

     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  
     5  //go:build appengine
     6  
     7  package gin
     8  
     9  func init() {
    10  	defaultPlatform = PlatformGoogleAppEngine
    11  }
    12  

View as plain text