You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/plugins/mysqlx/include/mysqlx_plugin.h

19 lines
419 B

#ifndef PROXYSQL_MYSQLX_PLUGIN_H
#define PROXYSQL_MYSQLX_PLUGIN_H
#include "ProxySQL_Plugin.h"
#include "mysqlx_admin_schema.h"
#include "mysqlx_config_store.h"
#include <memory>
struct MysqlxPluginContext {
ProxySQL_PluginServices* services { nullptr };
std::unique_ptr<MysqlxConfigStore> config_store {};
bool started { false };
};
MysqlxPluginContext& mysqlx_context();
#endif /* PROXYSQL_MYSQLX_PLUGIN_H */