pixwhile/servehelper.h

10 lines
292 B
C
Raw Normal View History

2023-04-03 09:32:26 +00:00
#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);