Files
luto/Luto/LutoApp.swift

18 lines
219 B
Swift
Raw Normal View History

2023-07-04 19:01:13 +02:00
//
// LutoApp.swift
// Luto
//
// Created by Pierre Boulc'h on 04/07/2023.
//
import SwiftUI
@main
struct LutoApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}