hikyuu2/hikyuu_pywrap/global/agent_main.cpp
2023-12-27 02:16:10 +08:00

17 lines
260 B
C++

/*
* Copyright(C) 2021 hikyuu.org
*
* Create on: 2021-01-30
* Author: fasiondog
*/
#include <pybind11/pybind11.h>
namespace py = pybind11;
void export_SpotAgent(py::module& m);
void export_global_main(py::module& m) {
export_SpotAgent(m);
}