FossilOrigin-Name: cd49c5cf4581d363708f470a8fccb9d33249d80000d77d440a37d7f21d44c3a6
This commit is contained in:
nekobit 2022-10-23 06:28:53 +00:00
parent 347dd1f88d
commit 6fa530814c

34
src/types/app.h Normal file
View file

@ -0,0 +1,34 @@
/*
* Wormhole - Federated social network
* Copyright (C) 2022 Nekobit
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <string>
class App
{
public:
App() = default;
~App() = default;
std::string client_name;
std::string client_id;
std::string client_secret;
std::string app_website;
std::string website;
};