You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
466 B
17 lines
466 B
// SPDX-FileCopyrightText: Copyright 2018 Citra Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "network/verify_user.h"
|
|
|
|
namespace Network::VerifyUser {
|
|
|
|
Backend::~Backend() = default;
|
|
|
|
NullBackend::~NullBackend() = default;
|
|
|
|
UserData NullBackend::LoadUserData([[maybe_unused]] const std::string& verify_uid,
|
|
[[maybe_unused]] const std::string& token) {
|
|
return {};
|
|
}
|
|
|
|
} // namespace Network::VerifyUser
|