2018-07-27 09:03:18 +02:00

17 lines
237 B
Go

// +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)
})
}