From 22ecca12b4fe0e0850401754c674632f322d919d Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 21 Apr 2026 22:08:09 -0500 Subject: feat(v2.3.0): add ownership intelligence and subdomain discovery * implement RDAP-based ownership section * add ownership diffing and change classification * add passive subdomain discovery via certificate transparency * highlight interesting subdomains * introduce Data+ scaffolding for future features * include ownership and subdomains in export and history --- DomainDig/DomainOwnershipService.swift | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 DomainDig/DomainOwnershipService.swift (limited to 'DomainDig/DomainOwnershipService.swift') diff --git a/DomainDig/DomainOwnershipService.swift b/DomainDig/DomainOwnershipService.swift new file mode 100644 index 0000000..2c7b738 --- /dev/null +++ b/DomainDig/DomainOwnershipService.swift @@ -0,0 +1,7 @@ +import Foundation + +enum DomainOwnershipService { + static func lookup(domain: String) async -> ServiceResult { + await RDAPService.ownership(for: domain) + } +} -- cgit v1.2.3