11 lines
219 B
C++
11 lines
219 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace media::http {
|
|
|
|
/** Blocking HTTP server (cpp-httplib). Returns 0 on clean shutdown. */
|
|
int run_server(const std::string& host, int port);
|
|
|
|
} // namespace media::http
|