arkisto/src/lib/types.cr

17 lines
227 B
Crystal

require "./actions"
module Arkisto
alias GlobalOptions = {
action: Action.class,
verbose: Bool,
dry_run: Bool,
config_file: String
}
alias ActionOptions = {
verbose: Bool,
dry_run: Bool
}
end