#pragma once #include #include #include #include #include // Webserver for stats namespace webserver { extern std::function handle_callback; // HTTP Handler for stats void http_handle(nng_aio *aio); void start(std::string http_server_url); void stop(); };