18 lines
326 B
Swift
18 lines
326 B
Swift
|
import SwiftUI
|
||
|
|
||
|
#warning("TODO: Add colors")
|
||
|
#warning("TODO: Grid view")
|
||
|
|
||
|
@main
|
||
|
struct CapsApp: App {
|
||
|
|
||
|
let database = Database(server: URL(string: "https://christophhagen.de/caps")!)
|
||
|
|
||
|
var body: some Scene {
|
||
|
WindowGroup {
|
||
|
ContentView()
|
||
|
.environmentObject(database)
|
||
|
}
|
||
|
}
|
||
|
}
|