docmachine-utils/src/write/config.cr

15 lines
273 B
Crystal

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