oxen-core/pybind/module.cpp

12 lines
242 B
C++

#include "common.hpp"
PYBIND11_MODULE(pywallet3, m)
{
wallet::Wallet_Init(m);
wallet::Keyring_Init(m);
wallet::KeyringManager_Init(m);
wallet::DaemonCommsConfig_Init(m);
wallet::RPCConfig_Init(m);
wallet::WalletConfig_Init(m);
}