Files
UpAndDown/src/helpers.h
T
2024-12-11 12:07:19 +01:00

30 lines
652 B
C++

#pragma once
#include <boost/beast/core.hpp>
#include <boost/beast/http.hpp>
#include <boost/beast/version.hpp>
#include <boost/asio/dispatch.hpp>
#include <boost/asio/strand.hpp>
#include <boost/config.hpp>
#include <algorithm>
#include <cstdlib>
#include <functional>
#include <iostream>
#include <memory>
#include <string>
#include <thread>
#include <vector>
namespace uad
{
namespace beast = boost::beast;
namespace http = beast::http;
namespace net = boost::asio;
beast::string_view MimeType(beast::string_view path);
std::string PathCat(beast::string_view base, beast::string_view path);
void Fail(beast::error_code ec, char const* what);
}