Make app property of App get-only
All checks were successful
Deploy Docs / publish (push) Successful in 42s
SwiftLint / SwiftLint (push) Successful in 4s

This commit is contained in:
david-swift 2024-10-08 12:34:50 +02:00
parent d619c34ed0
commit bba63e5224

View File

@ -29,7 +29,7 @@ public protocol App {
/// The app's scene.
@SceneBuilder var scene: Scene { get }
/// The app storage.
var app: Storage { get set }
var app: Storage { get }
/// An app has to have an `init()` initializer.
init()