1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:38:10 +00:00

LibWeb: Add directory entries page when visiting a local directory

This commit is contained in:
Bastiaan van der Plaat 2023-08-13 22:35:35 +02:00 committed by Sam Atkins
parent e4c3a52cfa
commit eafdb06d87
9 changed files with 163 additions and 0 deletions

View file

@ -0,0 +1,15 @@
/*
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Loader/Resource.h>
namespace Web {
ErrorOr<DeprecatedString> load_file_directory_page(LoadRequest const&);
}