]> git.r.bdr.sh - rbdr/captura/blame_incremental - Captura/CapturaApp.swift
Initial commit
[rbdr/captura] / Captura / CapturaApp.swift
... / ...
CommitLineData
1//
2// CapturaApp.swift
3// Captura
4//
5// Created by Ruben Beltran del Rio on 7/24/23.
6//
7
8import SwiftUI
9import SwiftData
10
11@main
12struct CapturaApp: App {
13
14 var body: some Scene {
15 WindowGroup {
16 ContentView()
17 }
18 .modelContainer(for: Item.self)
19 }
20}