12 lines
232 B
Crystal
12 lines
232 B
Crystal
|
|
||
|
module DocMachine::Build
|
||
|
class Config
|
||
|
property data_dir : String = Dir.current
|
||
|
property action : String = "watch"
|
||
|
property enable_tty : Bool = false
|
||
|
|
||
|
def initialize(@parent : DocMachine::Config)
|
||
|
end
|
||
|
end
|
||
|
end
|