1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/pybind/common.hpp

26 lines
351 B
C++
Raw Normal View History

2020-01-17 14:22:08 +01:00
#pragma once
#include <pybind11/pybind11.h>
namespace py = pybind11;
namespace llarp
{
void
Context_Init(py::module &mod);
2020-01-17 16:06:08 +01:00
void
CryptoTypes_Init(py::module &mod);
2020-01-17 14:22:08 +01:00
void
RouterContact_Init(py::module &mod);
2020-02-27 23:05:25 +01:00
void
Config_Init(py::module & mod);
2020-01-17 14:22:08 +01:00
} // namespace llarp
2020-02-27 22:30:45 +01:00
namespace tooling
{
void
RouterHive_Init(py::module & mod);
}