13 lines
262 B
Crystal
13 lines
262 B
Crystal
|
|
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
|