lokinet/pybind/module.cpp

12 lines
200 B
C++
Raw Normal View History

2020-01-17 14:22:08 +01:00
#include "common.hpp"
PYBIND11_MODULE(pyllarp, m)
{
2020-02-27 22:30:45 +01:00
tooling::RouterHive_Init(m);
2020-01-17 14:22:08 +01:00
llarp::RouterContact_Init(m);
2020-01-17 16:06:08 +01:00
llarp::CryptoTypes_Init(m);
llarp::Context_Init(m);
2020-02-27 23:05:25 +01:00
llarp::Config_Init(m);
2020-01-17 14:22:08 +01:00
}