change 'example' to 'config'.

This commit is contained in:
Your Name
2025-05-04 14:05:14 +12:00
parent 5286ec542a
commit 0bc78f353f
9 changed files with 23 additions and 73 deletions

View File

@ -52,10 +52,9 @@ void dropshell::autocomplete(const std::vector<std::string> &args)
if (cmd=="create-service")
{ // create-service <server> <template> <service>
std::vector<template_info> templates;
get_templates(templates);
auto templates = dropshell::gTemplateManager().get_template_list();
for (const auto& t : templates)
std::cout << t.template_name << std::endl;
std::cout << t << std::endl;
return;
}