From 6fa530814cdfa68eee1f1d340f1c0411b190b9ec Mon Sep 17 00:00:00 2001 From: nekobit Date: Sun, 23 Oct 2022 06:28:53 +0000 Subject: [PATCH] App type FossilOrigin-Name: cd49c5cf4581d363708f470a8fccb9d33249d80000d77d440a37d7f21d44c3a6 --- src/types/app.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/types/app.h diff --git a/src/types/app.h b/src/types/app.h new file mode 100644 index 0000000..a53e0d5 --- /dev/null +++ b/src/types/app.h @@ -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 . + */ + +#pragma once + +#include + +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; +};