docmachine-cli/src/config.cr

14 lines
144 B
Crystal
Raw Normal View History

2023-03-25 19:40:52 +00:00
2023-04-24 16:43:04 +00:00
2023-03-25 19:40:52 +00:00
module DocMachine
2023-04-24 16:43:04 +00:00
Log = ::Log.for("doc_machine")
2023-03-25 19:40:52 +00:00
class Config
property verbose : Bool = false
def initialize
end
end
end