mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
17 lines
237 B
Go
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)
|
|
})
|
|
}
|