docmachine-cli/src/config.cr
Glenn Y. Rolland 3f985f2751
All checks were successful
continuous-integration/drone/push Build is passing
feat: use Log library instead of puts
2023-04-25 12:28:16 +02:00

13 lines
130 B
Crystal

require "./module"
module DocMachine
class Config
property verbose : Bool = false
def initialize
end
end
end