summaryrefslogtreecommitdiff
path: root/octosentry/octosentryApp.swift
blob: 4d5a859e3c7cfc541f18c9c2b837bc19673a51c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  octosentryApp.swift
//  octosentry
//
//  Created by cmc on 2026-07-17.
//

import SwiftUI

@main
struct octosentryApp: App {
    @State private var store = SecurityEventStore()

    var body: some Scene {
        MenuBarExtra("OctoSentry", systemImage: "shield.lefthalf.filled") {
            SecurityEventListView(store: store)
        }
        .menuBarExtraStyle(.window)
    }
}