docmachine-cli/src/builder/config.cr

14 lines
262 B
Crystal
Raw Normal View History

2023-03-25 19:40:52 +00:00
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