Skip to content

Latest commit

 

History

History
57 lines (40 loc) · 1.25 KB

README.md

File metadata and controls

57 lines (40 loc) · 1.25 KB

${NAME}

CI Status Version License Platform

Description

This repository provides

Example

Usage

Installation

  1. Swift Package Manager

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 build
  1. CocoaPods

Add the following line to your Podfile:

pod '${NAME}'

and run pod update from the podfile directory first.

Author

dankinsoid, [email protected]

License

${NAME} is available under the MIT license. See the LICENSE file for more info.