module DocMachine module Builder 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 end