mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-06 11:30:08 +02:00
20 lines
353 B
Swift
20 lines
353 B
Swift
//
|
|
// Valet+Scanners.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 01/11/2022.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class ValetScanner {
|
|
|
|
static var active: DomainScanner = ValetDomainScanner()
|
|
|
|
public static func useFake() {
|
|
ValetScanner.active = FakeDomainScanner()
|
|
}
|
|
|
|
}
|