2023-04-23 15:59:29 +02:00
|
|
|
|
|
|
|
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]"
|
2023-04-25 12:28:16 +02:00
|
|
|
opts.on("-t", "--test", "Test") do
|
|
|
|
Log.info { "Test" }
|
|
|
|
end
|
2023-04-23 15:59:29 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|