Fix explicit setup function required

This commit is contained in:
david-swift 2024-08-30 14:01:29 +02:00
parent 5b2c68aaf7
commit 2e115258b3

View File

@ -88,7 +88,7 @@ extension Model {
///
/// At the point this function gets called, the model data is available.
/// Therefore, you can use it for initializing callbacks of children.
mutating func setup() { }
public mutating func setup() { }
/// Update the model.
/// - Parameter setModel: Update the model in this closure.