docmachine-cli/src/config.cr

14 lines
130 B
Crystal
Raw Normal View History

2023-03-25 20:40:52 +01:00
2023-04-24 18:43:04 +02:00
2023-04-25 12:28:16 +02:00
require "./module"
2023-04-24 18:43:04 +02:00
2023-04-25 12:28:16 +02:00
module DocMachine
2023-03-25 20:40:52 +01:00
class Config
property verbose : Bool = false
def initialize
end
end
end