blob: 2c7b7389eebce0dc15587f6c1061432d5f7c2306 (
plain) (
blame)
1
2
3
4
5
6
7
|
import Foundation
enum DomainOwnershipService {
static func lookup(domain: String) async -> ServiceResult<DomainOwnership> {
await RDAPService.ownership(for: domain)
}
}
|