docmachine-cli/src/write/config.cr

12 lines
189 B
Crystal
Raw Normal View History

2023-03-25 20:40:52 +01:00
module DocMachine::Write
2023-03-27 16:01:20 +02:00
class Config
property target_directory : String = "."
property force : Bool = false
def initialize(@parent : DocMachine::Config)
2023-03-25 20:40:52 +01:00
end
end
end