mirror of
https://github.com/cranci1/Sora.git
synced 2026-05-18 15:51:48 +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()
|
|
}
|
|
}
|
|
}
|