first commit

This commit is contained in:
Victor Fedorov
2026-01-20 19:35:38 +07:00
commit fd180ccd2e
10 changed files with 669 additions and 0 deletions

11
YoutubeDumperApp.swift Normal file
View File

@@ -0,0 +1,11 @@
import SwiftUI
@main
struct YoutubeDumperApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.frame(minWidth: 720, minHeight: 420)
}
}
}