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