Files
swift-hpa/Sources/PandocClient/Constants.swift
Michael Housh 54c07886ad
All checks were successful
CI / Run Tests (push) Successful in 2m28s
feat: Adding documentation comments.
2024-12-17 13:32:05 -05:00

10 lines
242 B
Swift

extension PandocClient {
/// Represents constant string values needed internally.
enum Constants {
static let pandocCommand = "pandoc"
static let defaultOutputFileName = "Report"
static let defaultPdfEngine = "xelatex"
}
}