Files

18 lines
232 B
Swift
Raw Permalink Normal View History

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