mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
12 lines
205 B
Swift
12 lines
205 B
Swift
|
import SwiftUI
|
||
|
|
||
|
final class WatchModel: ObservableObject {
|
||
|
static let shared = WatchModel()
|
||
|
|
||
|
@Published var historyToken = UUID()
|
||
|
|
||
|
func watchesChanged() {
|
||
|
historyToken = UUID()
|
||
|
}
|
||
|
}
|