Skip to content

Commit

Permalink
Added ingest command help.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveverwer committed Nov 21, 2023
1 parent eff6998 commit a1a0cbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/App/Commands/CommandMode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ enum SPICommand {
static let defaultLimit = 1

struct Signature: CommandSignature {
@Option(name: "limit", short: "l")
@Option(name: "limit", short: "l", help: "Number of packages to import in one batch.")
var limit: Int?

@Option(name: "id", help: "package id")
@Option(name: "id", help: "The database ID for the package.")
var id: Package.Id?

@Option(name: "url")
@Option(name: "url", help: "Package URL or fragment. For example owner/repo.")
var url: String?
}

Expand Down

0 comments on commit a1a0cbb

Please sign in to comment.