2023-03-25 20:40:52 +01:00
|
|
|
|
|
|
|
|
2023-04-23 15:59:29 +02: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
|