summaryrefslogtreecommitdiff
path: root/Polocyte/PolocyteApp.swift
blob: 6ad7c4ca31ddc4f8d8c49ae6af49f4f31a4ce0b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2024 Runxi Yu <https://runxiyu.org>
 * SPDX-License-Identifier: BSD-2-Clause
 */

import SwiftUI

@main
struct PolocyteApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}