docmachine-cli/src/write/config.cr

14 lines
232 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
2023-04-24 18:43:04 +02:00
Log = DocMachine::Write.for("config")
2023-03-27 16:01:20 +02:00
property target_directory : String = "."
property force : Bool = false
def initialize(@parent : DocMachine::Config)
2023-03-25 20:40:52 +01:00
end
end
end