You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
clair/vendor/github.com/ziutek/mymysql/godrv/appengine.go

17 lines
237 B

// +build appengine
package godrv
import (
"net"
"time"
"appengine/cloudsql"
)
func init() {
SetDialer(func(proto, laddr, raddr, user, dbname string, timeout time.Duration) (net.Conn, error) {
return cloudsql.Dial(raddr)
})
}