19 lines
313 B
Swift
19 lines
313 B
Swift
|
|
import SwiftUI
|
||
|
|
import VoiceCatCore
|
||
|
|
|
||
|
|
@main
|
||
|
|
struct VoiceCatiOSApp: App {
|
||
|
|
@State private var appState = AppState()
|
||
|
|
|
||
|
|
init() {
|
||
|
|
AudioSessionManager.shared.configure()
|
||
|
|
}
|
||
|
|
|
||
|
|
var body: some Scene {
|
||
|
|
WindowGroup {
|
||
|
|
MainView()
|
||
|
|
.environment(appState)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|