docmachine-utils/src/write/config.cr
Glenn Y. Rolland a921acc3f9
All checks were successful
continuous-integration/drone/push Build is passing
ci: add missing libreadline-dev
2023-04-24 18:43:04 +02:00

14 lines
232 B
Crystal

module DocMachine::Write
class Config
Log = DocMachine::Write.for("config")
property target_directory : String = "."
property force : Bool = false
def initialize(@parent : DocMachine::Config)
end
end
end