mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-15 23:09:25 +08:00
20 lines
319 B
Swift
20 lines
319 B
Swift
|
//
|
||
|
// PushDeerClipApp.swift
|
||
|
// PushDeerClip
|
||
|
//
|
||
|
// Created by HEXT on 2021/12/30.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
@main
|
||
|
struct PushDeerClipApp: App {
|
||
|
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
|
||
|
|
||
|
var body: some Scene {
|
||
|
WindowGroup {
|
||
|
ContentView().environmentObject(AppState.shared)
|
||
|
}
|
||
|
}
|
||
|
}
|