plugin wip

This commit is contained in:
Tim Blume 2021-01-09 11:17:50 +01:00
parent 44709f0498
commit 4d020014c0
7 changed files with 80 additions and 15 deletions

View file

@ -1,6 +1,15 @@
#pragma once
#include "api.h"
#include "proxyinterface.h"
#include <QObject>
class mitmproxyPlugin : public QObject,
public http::ProxyInterface
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "bigsnitch.api.HTTPProxyInterface/100" FILE "mitmproxy.json")
Q_INTERFACES(http::ProxyInterface)
public:
};