/* * Copyright (c) 2022, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::Fetch::Fetching { [[nodiscard]] bool cors_check(Infrastructure::Request const&, Infrastructure::Response const&); [[nodiscard]] bool tao_check(Infrastructure::Request const&, Infrastructure::Response const&); }