Files
keevault/MyPass/MyPassApp.swift
T

18 lines
226 B
Swift
Raw Normal View History

2026-05-21 22:04:13 +02:00
//
// MyPassApp.swift
// MyPass
//
// Created by Christophe Vila on 21/05/2026.
//
import SwiftUI
@main
struct MyPassApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}