diff options
Diffstat (limited to 'modules/commands/os_stats.cpp')
-rw-r--r-- | modules/commands/os_stats.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/os_stats.cpp b/modules/commands/os_stats.cpp index de00b22f8..82c62ce6e 100644 --- a/modules/commands/os_stats.cpp +++ b/modules/commands/os_stats.cpp @@ -12,7 +12,7 @@ #include "module.h" #include "modules/os_session.h" -struct Stats +struct Stats final : Serializable { static Stats *me; @@ -59,7 +59,7 @@ static int stats_count_servers(Server *s) return count; } -class CommandOSStats +class CommandOSStats final : public Command { ServiceReference<XLineManager> akills, snlines, sqlines; @@ -257,7 +257,7 @@ public: } }; -class OSStats +class OSStats final : public Module { CommandOSStats commandosstats; |