lokinet/pybind/module.cpp

11 lines
183 B
C++
Raw Normal View History

2020-01-17 14:22:08 +01:00
#include "common.hpp"
PYBIND11_MODULE(pyllarp, m)
{
llarp::simulate::SimContext_Init(m);
llarp::RouterContact_Init(m);
2020-01-17 16:06:08 +01:00
llarp::CryptoTypes_Init(m);
llarp::Context_Init(m);
2020-01-17 14:22:08 +01:00
}