14 lines
425 B
Swift
14 lines
425 B
Swift
import Rainbow
|
|
|
|
// Constant string values.
|
|
enum Constants {
|
|
static let appName = "hpa"
|
|
static let playbookFileName = "main.yml"
|
|
static let inventoryFileName = "inventory.ini"
|
|
static let importantExtraArgsNote = """
|
|
Any extra arguments to pass to the underlying command invocation have to
|
|
be at the end with `--` before any arguments otherwise there will
|
|
be an "Unkown option" error. See examples above.
|
|
"""
|
|
}
|