Initial Commit

This commit is contained in:
Pierre BOULC'H
2023-07-04 19:01:13 +02:00
commit 92e03bc310
14 changed files with 853 additions and 0 deletions

17
Luto/LutoApp.swift Normal file
View File

@ -0,0 +1,17 @@
//
// LutoApp.swift
// Luto
//
// Created by Pierre Boulc'h on 04/07/2023.
//
import SwiftUI
@main
struct LutoApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}