docmachine-utils/src/plan/cli.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

18 lines
397 B
Crystal

require "./config"
module DocMachine::Plan
class Cli
def self.add_options(opts, args, parent_config, command)
config = Config.new(parent_config)
opts.on("plan", "Generate content structure (beta)") do
opts.banner = "Usage: #{PROGRAM_NAME} plan [options]"
opts.on("-t", "--test", "Test") do
Log.info { "Test" }
end
end
end
end
end