docmachine-cli/src/config.cr

14 lines
143 B
Crystal
Raw Normal View History

2023-03-25 19:40:52 +00:00
2023-04-24 16:43:04 +00:00
2023-04-25 10:28:16 +00:00
require "./module"
2023-04-24 16:43:04 +00:00
2023-04-25 10:28:16 +00:00
module DocMachine
2023-03-25 19:40:52 +00:00
class Config
2023-04-27 07:42:15 +00:00
property verbosity = ::Log::Severity::Notice
2023-03-25 19:40:52 +00:00
def initialize
end
end
end