refind logger

This commit is contained in:
gcw_4spBpAfv
2026-01-20 18:40:54 +08:00
parent 0ce140a210
commit 945077a453
10 changed files with 621 additions and 661 deletions

View File

@@ -0,0 +1,12 @@
#include <pybind11/pybind11.h>
namespace py = pybind11;
static const char* kServerIp = "stcp.shelingxingqiu.com";
PYBIND11_MODULE(archery_netcore, m) {
m.doc() = "Archery net core (native, pybind11).";
m.def("server_ip", []() {
return py::str(kServerIp);
});
}