diff --git a/Sources/Containerization/VirtualMachineInstance.swift b/Sources/Containerization/VirtualMachineInstance.swift index 070cee87..8737730b 100644 --- a/Sources/Containerization/VirtualMachineInstance.swift +++ b/Sources/Containerization/VirtualMachineInstance.swift @@ -52,10 +52,10 @@ public protocol VirtualMachineInstance: Sendable { } extension VirtualMachineInstance { - func pause() async throws { + public func pause() async throws { throw ContainerizationError(.unsupported, message: "pause") } - func resume() async throws { + public func resume() async throws { throw ContainerizationError(.unsupported, message: "resume") } }