Last active
November 14, 2019 13:35
-
-
Save pvzig/74e7c4e18b60ac05ff8737bdcd12e34d to your computer and use it in GitHub Desktop.
Sample Swift Package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// swift-tools-version:5.1 | |
import PackageDescription | |
let package = Package( | |
name: "robot-or-not-bot", | |
dependencies: [ | |
.package(url: "https://github.com/pvzig/SlackKit.git", from: "4.0.0") | |
], | |
targets: [ | |
.target( | |
name: "robot-or-not-bot", | |
dependencies: ["SlackKit"]), | |
.testTarget( | |
name: "robot-or-not-botTests", | |
dependencies: ["robot-or-not-bot"]), | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment