layout source from main

This commit is contained in:
2026-06-13 10:49:41 +07:00
parent 8c111f2406
commit 853acefac1
25 changed files with 1848 additions and 1463 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include <httplib.h>
#include <filesystem>
namespace lm {
class StaticFileServer
{
public:
static void mount(httplib::Server& svr, const std::filesystem::path& www_root);
};
} // namespace lm