16 lines
368 B
Crystal
16 lines
368 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") { puts "Test" }
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|