Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created June 12, 2020 16:37
Show Gist options
  • Save stevencurtis/bb617fce7a1b660bcb121adf46c633f1 to your computer and use it in GitHub Desktop.
Save stevencurtis/bb617fce7a1b660bcb121adf46c633f1 to your computer and use it in GitHub Desktop.
AbstractCoordinator
protocol AbstractCoordinator {
func addChildCoordinator(_ coordinator: AbstractCoordinator)
func removeAllChildCoordinatorsWith<T>(type: T.Type)
func removeAllChildCoordinators()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment