File indexing completed on 2026-05-10 12:32:20
0001 /* 0002 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QString> 0010 #include <QUrl> 0011 0012 namespace GitHubAuthenticationSettings 0013 { 0014 [[nodiscard]] QString clientId(); 0015 [[nodiscard]] QString clientSecret(); 0016 [[nodiscard]] QUrl authorizeUrl(); 0017 [[nodiscard]] QUrl accessTokenUrl(); 0018 };