Initial commit

This commit is contained in:
2024-05-26 22:20:37 +02:00
commit d37a11fa61
10 changed files with 382 additions and 0 deletions

15
Package.swift Normal file
View File

@ -0,0 +1,15 @@
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "AppUpdater",
platforms: [.macOS(.v11)],
products: [
.library(name: "AppUpdater", targets: ["AppUpdater"]),
],
targets: [
.target(name: "AppUpdater"),
]
)