Introduce CallService

This commit is contained in:
ismailgulek
2020-12-01 13:41:31 +03:00
parent 7fc602f266
commit c2e616b870
13 changed files with 680 additions and 227 deletions
+5
View File
@@ -38,4 +38,9 @@ extension String {
func vc_caseInsensitiveContains(_ other: String) -> Bool {
return self.range(of: other, options: .caseInsensitive) != nil
}
/// Returns a globally unique string
static var vc_unique: String {
return ProcessInfo.processInfo.globallyUniqueString
}
}