UUID+Identifiable.swift 171 B

12345678910
  1. // LoopFollow
  2. // UUID+Identifiable.swift
  3. // Created by Jonas Björkert.
  4. import Foundation
  5. extension UUID: @retroactive Identifiable {
  6. public var id: UUID { self }
  7. }