21 lines
468 B
Swift
21 lines
468 B
Swift
//
|
|
// InjectionValues.swift
|
|
// LuminateDI
|
|
//
|
|
// Created by Brendan Szymanski on 6/10/26.
|
|
//
|
|
|
|
import Foundation
|
|
import LuminateCore
|
|
|
|
public struct InjectionValues {
|
|
|
|
public var client: JellyfinClient?
|
|
public var userId: String?
|
|
public var imageService: ImageService?
|
|
public var webSocketClient: WebSocketClient?
|
|
public var persistence: PersistenceService?
|
|
public var pageAnimationTracker: (any PageAnimationTracking)?
|
|
|
|
public init() {}
|
|
}
|