This commit is contained in:
mrFq1
2023-04-25 14:51:23 +08:00
commit f3141fbffe
39 changed files with 3793 additions and 0 deletions
@@ -0,0 +1,19 @@
//
// ClashX_DashboardApp.swift
// ClashX Dashboard
//
//
import SwiftUI
@main
struct ClashX_DashboardApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
.commands {
SidebarCommands()
}
}
}