Last active
July 23, 2021 22:16
-
-
Save Rashidium/697696cbc71c169ab511b8bf28208317 to your computer and use it in GitHub Desktop.
DeeplinkManager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// 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