Moved the html helpers to a html folder.

This commit is contained in:
Relintai 2021-05-27 16:57:38 +02:00
parent 0c0123889b
commit 843e8153ff
6 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ Import("env")
env.core_sources = []
env.add_source_files(env.core_sources, "*.cpp")
env.add_source_files(env.core_sources, "./html/*.cpp")
env.add_source_files(env.core_sources, "./http/*.cpp")
env.add_source_files(env.core_sources, "./database/*.cpp")

View File

@ -1,6 +1,6 @@
#include "utils.h"
#include "html_builder.h"
#include "html/html_builder.h"
#include <maddy/parser.h>
#include <memory>
#include <sstream>