Skip to content

Instantly share code, notes, and snippets.

@barisuyar
Created December 6, 2021 12:44
Show Gist options
  • Select an option

  • Save barisuyar/deccdf23cd8409d8dfe86fef03e708c4 to your computer and use it in GitHub Desktop.

Select an option

Save barisuyar/deccdf23cd8409d8dfe86fef03e708c4 to your computer and use it in GitHub Desktop.
Permission Creation
protocol Permission {
associatedtype PermissionType
var status: PermissionType { get }
func request(completion: @escaping (PermissionType) -> ())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment