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