mirror of
https://github.com/cranci1/Sora.git
synced 2026-04-20 16:12:50 +00:00
17 lines
217 B
Swift
17 lines
217 B
Swift
//
|
|
// SulfurTVApp.swift
|
|
// SulfurTV
|
|
//
|
|
// Created by Dominic on 21.04.25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SoraTVApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
RootView()
|
|
}
|
|
}
|
|
}
|