All checks were successful
continuous-integration/drone/push Build is passing
13 lines
232 B
Crystal
13 lines
232 B
Crystal
|
|
|
|
module DocMachine::Write
|
|
class Config
|
|
Log = DocMachine::Write.for("config")
|
|
|
|
property target_directory : String = "."
|
|
property force : Bool = false
|
|
|
|
def initialize(@parent : DocMachine::Config)
|
|
end
|
|
end
|
|
end
|