Skip to content

Instantly share code, notes, and snippets.

@lordcodes
Created March 10, 2020 09:53
Show Gist options
  • Save lordcodes/156eb511bb6387e1473e775c8def661f to your computer and use it in GitHub Desktop.
Save lordcodes/156eb511bb6387e1473e775c8def661f to your computer and use it in GitHub Desktop.
Code for the article "Manage automation tasks using Swift Package Manager"
struct Tasks: ParsableCommand {
static let configuration = CommandConfiguration(
commandName: "tasks",
abstract: "An automation task runner for Uploader.",
subcommands: [Linting.self, Install.self, Uninstall.self]
)
}
Tasks.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment