mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-08 04:20:07 +02:00
16 lines
256 B
Swift
16 lines
256 B
Swift
//
|
|
// CreatedFromFile.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 15/05/2022.
|
|
// Copyright © 2022 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol CreatedFromFile {
|
|
|
|
static func from(filePath: String) -> Self?
|
|
|
|
}
|