| 1234567891011121314151617181920212223 |
- //
- // Pluggable.swift
- // LoopKit
- //
- // Created by Nathaniel Hamming on 2023-09-08.
- // Copyright © 2023 LoopKit Authors. All rights reserved.
- //
- public protocol Pluggable: AnyObject {
- /// The unique identifier for this plugin.
- static var pluginIdentifier: String { get }
-
- /// A plugin may need a reference to another plugin. This callback allows for such a reference.
- /// It is called once during app initialization after plugins are initialized and again as new plugins are added and initialized.
- func initializationComplete(for pluggables: [Pluggable])
- }
- public extension Pluggable {
- var pluginIdentifier: String { return type(of: self).pluginIdentifier }
-
- func initializationComplete(for pluggables: [Pluggable]) { } // optional
- }
|