mirror of
https://github.com/pboulch/luto.git
synced 2025-12-19 04:43:08 +00:00
18 lines
219 B
Swift
18 lines
219 B
Swift
//
|
|
// LutoApp.swift
|
|
// Luto
|
|
//
|
|
// Created by Pierre Boulc'h on 04/07/2023.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct LutoApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|