You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/pybind/module.cpp

19 lines
420 B
C++

#include "common.hpp"
4 years ago
#include "util/logging/logger.hpp"
PYBIND11_MODULE(pyllarp, m)
{
tooling::RouterHive_Init(m);
tooling::RouterEvent_Init(m);
llarp::RouterContact_Init(m);
llarp::CryptoTypes_Init(m);
llarp::Context_Init(m);
llarp::Config_Init(m);
llarp::handlers::PyHandler_Init(m);
llarp::service::Address_Init(m);
4 years ago
m.def("EnableDebug", []() {
llarp::SetLogLevel(llarp::eLogDebug);
});
}