This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
188 B
C++

#include "RelayServer.h"
class RelayServerApp : public wxApp
{
public:
bool OnInit() override;
};
bool RelayServerApp::OnInit()
{
return true;
}
wxIMPLEMENT_APP(RelayServerApp);