mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-19 09:25:28 +00:00
f574cd798f
- includes are now sorted in consistent, logical order; first step in an attempt to fix the tomfoolery (no relation to Tom) brought in by include-what-you-use - shuffled around some cmake linking to simplify dependency graph - superfluous files removed
27 lines
715 B
C++
27 lines
715 B
C++
#include "common.hpp"
|
|
|
|
#include <llarp/util/logging.hpp>
|
|
|
|
PYBIND11_MODULE(pyllarp, m)
|
|
{
|
|
tooling::RouterHive_Init(m);
|
|
tooling::RouterEvent_Init(m);
|
|
llarp::Router_Init(m);
|
|
tooling::HiveRouter_Init(m);
|
|
llarp::PeerDb_Init(m);
|
|
llarp::PeerStats_Init(m);
|
|
llarp::RouterID_Init(m);
|
|
llarp::RouterContact_Init(m);
|
|
llarp::CryptoTypes_Init(m);
|
|
llarp::Context_Init(m);
|
|
tooling::HiveContext_Init(m);
|
|
llarp::Config_Init(m);
|
|
llarp::dht::DHTTypes_Init(m);
|
|
llarp::PathTypes_Init(m);
|
|
llarp::path::PathHopConfig_Init(m);
|
|
llarp::handlers::PyHandler_Init(m);
|
|
llarp::service::Address_Init(m);
|
|
m.def("EnableDebug", []() { llarp::log::reset_level(llarp::log::Level::debug); });
|
|
llarp::Logger_Init(m);
|
|
}
|