mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-06 18:24:42 +08:00
15 lines
285 B
Swift
15 lines
285 B
Swift
import WidgetKit
|
|
import Foundation
|
|
|
|
struct StoryEntry: TimelineEntry {
|
|
let date: Date
|
|
let story: Story
|
|
let source: StorySource
|
|
|
|
static let errorPlaceholder: StoryEntry = StoryEntry(
|
|
date: .now,
|
|
story: .errorPlaceholder,
|
|
source: .top
|
|
)
|
|
}
|