tart/Sources/tart/Network/Network.swift

9 lines
182 B
Swift

import Virtualization
import Semaphore
protocol Network {
func attachments() -> [VZNetworkDeviceAttachment]
func run(_ sema: AsyncSemaphore) throws
func stop() async throws
}