Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jrsaruo/template-swift-library

A template repository for Swift libraries.
https://github.com/jrsaruo/template-swift-library

Last synced: about 2 months ago
JSON representation

A template repository for Swift libraries.

Awesome Lists containing this project

README

        

# template-swift-library

A template repository for Swift libraries.

## Requirements

- \
- \

## Using \ in your project

To use the `` library in a SwiftPM project, add the following line to the dependencies in your `Package.swift` file:

```swift
.package(url: "https://github.com/jrsaruo/", from: "1.0.0"),
```

and add `` as a dependency for your target:

```swift
.target(name: "", dependencies: [
.product(name: "", package: ""),
// other dependencies
]),
```

Finally, add `import ` in your source code.