Files
LockInBroMacOS/LockInBro/LockInBroApp.swift

18 lines
225 B
Swift
Raw Normal View History

2026-03-28 14:53:40 -04:00
//
// LockInBroApp.swift
// LockInBro
//
// Created by Joy Zhuo on 3/28/26.
//
import SwiftUI
@main
struct LockInBroApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}