mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
22 lines
387 B
C++
22 lines
387 B
C++
#include "static_folder_page.h"
|
|
|
|
#include "web/http/request.h"
|
|
|
|
#include <iostream>
|
|
#include "core/file_cache.h"
|
|
#include "database/database_manager.h"
|
|
#include "web/html/html_builder.h"
|
|
|
|
void StaticFolderPage::handle_request_main(Request *request) {
|
|
}
|
|
|
|
void StaticFolderPage::load() {
|
|
}
|
|
|
|
StaticFolderPage::StaticFolderPage() :
|
|
WebNode() {
|
|
}
|
|
|
|
StaticFolderPage::~StaticFolderPage() {
|
|
}
|