mirror of
https://github.com/yJason/ClashX-Dashboard.git
synced 2026-02-04 10:02:26 +08:00
20 lines
249 B
Swift
20 lines
249 B
Swift
//
|
|
// ClashX_DashboardApp.swift
|
|
// ClashX Dashboard
|
|
//
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct ClashX_DashboardApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
.commands {
|
|
SidebarCommands()
|
|
}
|
|
}
|
|
}
|