/* * Copyright (c) 2020-2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace HTTP { void HttpsJob::set_certificate(ByteString certificate, ByteString key) { (void)certificate; (void)key; } }