]> git.proxmox.com Git - ceph.git/blob - ceph/src/mgr/mgr_commands.cc
update sources to v12.1.2
[ceph.git] / ceph / src / mgr / mgr_commands.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #include "mgr_commands.h"
5
6 /* The set of statically defined (C++-handled) commands. This
7 * does not include the Python-defined commands, which are loaded
8 * in PyModules */
9 const std::vector<MonCommand> mgr_commands = {
10 #define COMMAND(parsesig, helptext, module, perm, availability) \
11 {parsesig, helptext, module, perm, availability, 0},
12 #include "MgrCommands.h"
13 #undef COMMAND
14 };