cloudsql_classic.go 345 B

123456789101112131415161718
  1. // Copyright 2013 Google Inc. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. //go:build appengine
  5. // +build appengine
  6. package cloudsql
  7. import (
  8. "net"
  9. "appengine/cloudsql"
  10. )
  11. func connect(instance string) (net.Conn, error) {
  12. return cloudsql.Dial(instance)
  13. }