8 lines
123 B
Swift
8 lines
123 B
Swift
import Foundation
|
|
|
|
enum DNSEvent {
|
|
case packet(Data)
|
|
}
|
|
|
|
typealias DNSEventHandler = @Sendable (DNSEvent) async -> Void
|