Files
Hacki/ios/StoryWidget/StoryEntry.swift
2025-01-20 01:12:44 -08:00

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
)
}