Serenity Operating System
1/*
2 * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <AK/Forward.h>
10#include <LibWeb/Forward.h>
11
12namespace Web::Fetch::Fetching {
13
14ErrorOr<bool> cors_check(Infrastructure::Request const&, Infrastructure::Response const&);
15ErrorOr<bool> tao_check(Infrastructure::Request const&, Infrastructure::Response const&);
16
17}