| 59 | } |
| 60 | |
| 61 | int main(int argc, char* argv[]) { |
| 62 | try { |
| 63 | asio::io_context io_context; |
| 64 | start_server(io_context, 9980); |
| 65 | } catch (std::exception& e) { |
| 66 | std::cerr << "Exception: " << e.what() << "\n"; |
| 67 | } |
| 68 | |
| 69 | return 0; |
| 70 | } |
nothing calls this directly
no test coverage detected