11 lines
189 B
Crystal
11 lines
189 B
Crystal
|
|
|
|
module DocMachine::Write
|
|
class Config
|
|
property target_directory : String = "."
|
|
property force : Bool = false
|
|
|
|
def initialize(@parent : DocMachine::Config)
|
|
end
|
|
end
|
|
end
|