blob: 4197e1df70b52bddd88fd410b12440d184e5d903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// akiApp.swift
// aki
//
// Created by Conrad Reeves on 10/30/24.
//
import SwiftUI
@main
struct akiApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
|