1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 21:31:18 +01:00

Running glide update -v to pulldown all the required depedencies

This commit is contained in:
Hugues Alary
2018-05-22 19:14:00 -07:00
parent 450a5c290b
commit fad9e8dc39
1481 changed files with 199396 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
// Copyright 2013 Google Inc. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
// +build !appengine
package cloudsql
import (
"errors"
"net"
)
func connect(instance string) (net.Conn, error) {
return nil, errors.New(`cloudsql: not supported in App Engine "flexible environment"`)
}