Files
ladybird/Userland/Services/RequestServer/Forward.h
Andreas Kling f2fd8fc928 Everywhere: Remove LibGemini
This hasn't been maintained (or worked at all) for a long time,
and it's not a widely supported protocol, so let's drop it.
2024-06-04 09:19:39 +02:00

20 lines
295 B
C++

/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace RequestServer {
class ConnectionFromClient;
class Request;
class HttpRequest;
class HttpProtocol;
class HttpsRequest;
class HttpsProtocol;
class Protocol;
}