this repo has no description

Initial Commit

radmakr.com e945910a

Changed files
+42
Sources
ImageKit
Tests
ImageKitTests
+8
.gitignore
···
··· 1 + .DS_Store 2 + /.build 3 + /Packages 4 + xcuserdata/ 5 + DerivedData/ 6 + .swiftpm/configuration/registries.json 7 + .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 8 + .netrc
+26
Package.swift
···
··· 1 + // swift-tools-version: 6.2 2 + // The swift-tools-version declares the minimum version of Swift required to build this package. 3 + 4 + import PackageDescription 5 + 6 + let package = Package( 7 + name: "ImageKit", 8 + products: [ 9 + // Products define the executables and libraries a package produces, making them visible to other packages. 10 + .library( 11 + name: "ImageKit", 12 + targets: ["ImageKit"] 13 + ), 14 + ], 15 + targets: [ 16 + // Targets are the basic building blocks of a package, defining a module or a test suite. 17 + // Targets can depend on other targets in this package and products from dependencies. 18 + .target( 19 + name: "ImageKit" 20 + ), 21 + .testTarget( 22 + name: "ImageKitTests", 23 + dependencies: ["ImageKit"] 24 + ), 25 + ] 26 + )
+2
Sources/ImageKit/ImageKit.swift
···
··· 1 + // The Swift Programming Language 2 + // https://docs.swift.org/swift-book
+6
Tests/ImageKitTests/ImageKitTests.swift
···
··· 1 + import Testing 2 + @testable import ImageKit 3 + 4 + @Test func example() async throws { 5 + // Write your test here and use APIs like `#expect(...)` to check expected conditions. 6 + }