#pragma once
#include <pybind11/embed.h>
#include "python_interpreter.h"
class __attribute__((visibility("default")))
Plugins {
public:
Plugins();
void load();
private:
py::detail::embedded_module jucipp_module;
Python::Interpreter interpreter;
};