#include "proxyhandler.h"

bool http::ProxyHandler::loadPlugin(QObject *proxy)
{
    auto inst = qobject_cast<ProxyInterface*>(proxy);
    if(!inst) {

        return false;
    }



    return true;
}