fix: correct plugin_paths decl

This commit is contained in:
Myriad-Dreamin
2026-01-24 23:48:53 +08:00
parent 74f75f107f
commit 2408978d2d

View File

@@ -75,11 +75,10 @@ cl::opt<logging::Level> log_level{
cl::desc("The log level, default is info"),
};
cl::opt<std::vector<std::string>> plugin_paths{
cl::list<std::string> plugin_paths{
"plugin-path",
cl::cat(category),
cl::value_desc("string"),
cl::init(std::vector<std::string>{}),
cl::value_desc("path1,path2,path3,..."),
cl::desc("The server plugins to load"),
cl::CommaSeparated,
};