punchnet-macos/Tun/DNS/DNSEvent.swift
2026-05-27 22:28:42 +08:00

8 lines
123 B
Swift

import Foundation
enum DNSEvent {
case packet(Data)
}
typealias DNSEventHandler = @Sendable (DNSEvent) async -> Void