mirror of
https://github.com/pgsty/minio.git
synced 2026-08-10 08:13:28 +03:00
Remove gateway implementations for manta, sia and b2 (#7115)
This commit is contained in:
committed by
kannappanr
parent
4fdacb8b14
commit
3265112d04
+16
@@ -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"`)
|
||||
}
|
||||
Reference in New Issue
Block a user