Skip to content

Instantly share code, notes, and snippets.

@Rashidium
Last active July 23, 2021 22:16
Show Gist options
  • Select an option

  • Save Rashidium/697696cbc71c169ab511b8bf28208317 to your computer and use it in GitHub Desktop.

Select an option

Save Rashidium/697696cbc71c169ab511b8bf28208317 to your computer and use it in GitHub Desktop.
DeeplinkManager
/// Manager for deeplinks.
public final class DeeplinkManager {
/// Application supported deeplinks.
private var links: [AppLinkable]
/// Initializes manager with supported links.
public init(supportedLinks links: [AppLinkable]) {
self.links = links
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment