This repository provides
Create a Package.swift file.
// swift-tools-version:5.7 import PackageDescription let package = Package( name: "SomeProject", dependencies: [ .package(url: "https://github.com/dankinsoid/${NAME}.git", from: "0.0.1") ], targets: [ .target(name: "SomeProject", dependencies: ["${NAME}"]) ] )$ swift buildAdd the following line to your Podfile:
pod '${NAME}'and run pod update from the podfile directory first.
dankinsoid, voidilov@gmail.com
${NAME} is available under the MIT license. See the LICENSE file for more info.