(host, database string)
| 303 | } |
| 304 | |
| 305 | func getDSN(host, database string) string { |
| 306 | return fmt.Sprintf("%s/databases/%s", host, database) |
| 307 | } |
| 308 | |
| 309 | // get `<database>` from `projects/<project>/instances/<instance>/databases/<database>`. |
| 310 | func getDatabaseFromDSN(dsn string) (string, error) { |
no outgoing calls
no test coverage detected