8 lines
91 B
Swift
8 lines
91 B
Swift
import Foundation
|
|
|
|
extension UUID {
|
|
var idString: String {
|
|
uuidString.idString
|
|
}
|
|
}
|