fix a stupid bug

This commit is contained in:
2023-12-15 02:39:44 +00:00
parent 2f21e0cca3
commit 7cb2a88195
2 changed files with 2 additions and 2 deletions

View File

@ -99,6 +99,7 @@ class SessionClass {
std::stack<std::pair<std::string, int>> login_stack;
std::string SessionToken;
std::string OuthorizationKey;
SessionClass() = default;
SessionClass(std::string _SessionToken, std::string _OuthorizationKey)
: SessionToken(_SessionToken), OuthorizationKey(_OuthorizationKey) {}
};