| 12345678910111213141516171819202122 |
- //
- // StubDocument.swift
- // Todos
- //
- // Created by Sam Jaffe on 3/1/26.
- //
- import Foundation
- import SwiftUI
- import UniformTypeIdentifiers
- struct StubDocument : FileDocument {
- static var readableContentTypes = [UTType.yaml]
-
- init() {}
-
- init(configuration: ReadConfiguration) throws {}
-
- func fileWrapper(configuration: WriteConfiguration) throws -> FileWrapper {
- return FileWrapper(regularFileWithContents: Data())
- }
- }
|