docmachine-cli/src/write/config.cr

15 lines
273 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
2023-04-27 10:02:35 +02:00
property template_name : String = ""
2023-03-27 16:01:20 +02:00
def initialize(@parent : DocMachine::Config)
2023-03-25 20:40:52 +01:00
end
end
end