1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-08 04:20:07 +02:00
Files
app/phpmon/Domain/Integrations/Valet/Domains/ValetInteractable.swift
2022-12-06 19:43:45 +01:00

22 lines
367 B
Swift

//
// ValetInteractable.swift
// PHP Monitor
//
// Created by Nico Verbruggen on 21/10/2022.
// Copyright © 2022 Nico Verbruggen. All rights reserved.
//
import Foundation
protocol ValetInteractable {
func secure() async throws
func unsecure() async throws
func isolate(version: PhpVersionNumber) async throws
func unlink() async throws
}