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