initial commit

This commit is contained in:
2025-11-01 15:34:57 +01:00
commit ec6299e626
3 changed files with 567 additions and 0 deletions

30
Package.swift Normal file
View File

@@ -0,0 +1,30 @@
// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
// Package: FakeWebKit
// Author: undeaDD
// Repository: https://github.com/undeaDD/FakeWebKit
// License: MIT
// Version: 0.0.1
import PackageDescription
let package = Package(
name: "FakeWebKit",
defaultLocalization: "en",
platforms: [
.iOS(.v13),
.tvOS(.v13),
],
products: [
.library(
name: "FakeWebKit",
targets: ["FakeWebKit"]
),
],
targets: [
.target(
name: "FakeWebKit"
)
]
)