cloud-dns-ios/dns/dnsApp.swift

18 lines
205 B
Swift
Raw Normal View History

2026-04-12 18:28:47 +01:00
//
// dnsApp.swift
// dns
//
// Created by irl on 12/04/2026.
//
import SwiftUI
@main
struct dnsApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}