fix group messages and start config commands (disabled for now)

This commit is contained in:
2023-12-14 17:56:52 +01:00
parent 1c10d4da4c
commit 910029bf4f
6 changed files with 94 additions and 5 deletions

16
src/config_commands.hpp Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <solanaceae/contact/contact_model3.hpp>
#include <solanaceae/message3/registry_message_model.hpp>
// fwd
class MessageCommandDispatcher;
struct ConfigModelI;
void registerConfigCommands(
MessageCommandDispatcher& mcd,
ConfigModelI& conf,
Contact3Registry& cr,
RegistryMessageModel& rmm
);