(ctx context.Context, u *url.URL)
| 841 | // This interface is generally implemented by types in driver packages. |
| 842 | type SubscriptionURLOpener interface { |
| 843 | OpenSubscriptionURL(ctx context.Context, u *url.URL) (*Subscription, error) |
| 844 | } |
| 845 | |
| 846 | // URLMux is a URL opener multiplexer. It matches the scheme of the URLs |
no outgoing calls