2022-05-28 05:42:28 +03:00
|
|
|
// Copyright 2017 Manu Martinez-Almeida. All rights reserved.
|
2017-06-12 09:04:52 +03:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-03-27 04:09:44 +03:00
|
|
|
//go:build appengine
|
|
|
|
// +build appengine
|
|
|
|
|
2016-12-05 13:21:59 +03:00
|
|
|
package gin
|
|
|
|
|
|
|
|
func init() {
|
2021-06-24 03:58:10 +03:00
|
|
|
defaultPlatform = PlatformGoogleAppEngine
|
2016-12-05 13:21:59 +03:00
|
|
|
}
|