Initial commit.

This commit is contained in:
2026-08-19 23:19:08 +02:00
commit 22e737d9c2
153 changed files with 11680 additions and 0 deletions
@@ -0,0 +1,12 @@
import Infrastructure
/// An ``Asset`` with a fixed file name and set of extensions, optionally held in a folder of its own.
struct StubAsset: Asset {
// MARK: Properties
var folder: String? = nil
let fileExtensions: [AssetExtension]
let fileName: String
}