mirror of
https://github.com/jkcoxson/LocalDevVPN.git
synced 2026-03-02 14:36:16 +01:00
18 lines
222 B
Swift
18 lines
222 B
Swift
//
|
|
// StosVPNApp.swift
|
|
// StosVPN
|
|
//
|
|
// Created by Stossy11 on 28/03/2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct StosVPNApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|