mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 10:35:06 +00:00
18 lines
364 B
C++
18 lines
364 B
C++
/*
|
|
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Fetch/Infrastructure/HTTP/Responses.h>
|
|
#include <LibWeb/Loader/Resource.h>
|
|
|
|
namespace Web {
|
|
|
|
ErrorOr<String> load_error_page(AK::URL const&);
|
|
|
|
ErrorOr<String> load_file_directory_page(AK::URL const&);
|
|
|
|
}
|