Files
keypitecc/main/main.cpp
2026-02-27 22:17:33 +01:00

13 lines
152 B
C++

/*
* ESP32 Tang Server - Main Entry Point
*/
#include "TangServer.h"
extern "C" void app_main(void) {
setup();
while (true) {
loop();
}
}