(ctx context.Context, u *url.URL)
| 28 | // This interface is generally implemented by types in driver packages. |
| 29 | type CollectionURLOpener interface { |
| 30 | OpenCollectionURL(ctx context.Context, u *url.URL) (*Collection, error) |
| 31 | } |
| 32 | |
| 33 | // URLMux is a URL opener multiplexer. It matches the scheme of the URLs against |
no outgoing calls