1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-12-21 03:10:06 +01:00
Files
app/phpmon/Container/Container+Real.swift
2025-12-02 15:21:05 +01:00

16 lines
356 B
Swift

//
// Container+Real.swift
// PHP Monitor
//
// Created by Nico Verbruggen on 16/10/2025.
// Copyright © 2025 Nico Verbruggen. All rights reserved.
//
extension Container {
public static func real(minimal: Bool = false) -> Container {
let container = Container()
container.bind(coreOnly: minimal)
return container
}
}