2023-12-07 10:41:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
struct SPlugin {
|
|
|
|
|
std::string name;
|
|
|
|
|
std::string filename;
|
2024-01-07 18:15:51 +01:00
|
|
|
bool enabled = false;
|
|
|
|
|
bool failed = false;
|
2023-12-07 10:41:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct SPluginRepository {
|
|
|
|
|
std::string url;
|
2024-03-06 13:01:04 +01:00
|
|
|
std::string rev;
|
2023-12-07 10:41:09 +00:00
|
|
|
std::string name;
|
|
|
|
|
std::vector<SPlugin> plugins;
|
|
|
|
|
std::string hash;
|
|
|
|
|
};
|