14 lines
188 B
C++
Raw Normal View History

2025-05-05 23:30:28 +08:00
#include "RelayServer.h"
class RelayServerApp : public wxApp
{
public:
bool OnInit() override;
};
bool RelayServerApp::OnInit()
{
return true;
}
wxIMPLEMENT_APP(RelayServerApp);