summaryrefslogtreecommitdiff
path: root/src/network/verify_user.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/network/verify_user.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/network/verify_user.cpp b/src/network/verify_user.cpp
new file mode 100644
index 000000000..f84cfe59b
--- /dev/null
+++ b/src/network/verify_user.cpp
@@ -0,0 +1,17 @@
1// SPDX-FileCopyrightText: Copyright 2018 Citra Emulator Project
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#include "network/verify_user.h"
5
6namespace Network::VerifyUser {
7
8Backend::~Backend() = default;
9
10NullBackend::~NullBackend() = default;
11
12UserData NullBackend::LoadUserData([[maybe_unused]] const std::string& verify_uid,
13 [[maybe_unused]] const std::string& token) {
14 return {};
15}
16
17} // namespace Network::VerifyUser