pixwhile/servehelper.h

11 lines
367 B
C++

#pragma once
#include <httplib/httplib.h>
#include "blankie/serializer.h"
struct Config; // forward declaration from config.h
using Element = blankie::html::Element;
void serve(const httplib::Request& req, httplib::Response& res, const Config& config, std::string title, Element element);
std::string get_origin(const httplib::Request& req, const Config& config);