summaryrefslogtreecommitdiffstats
path: root/src/network/verify_user.cpp
blob: d9d98e49559bedb643336f0dea42eb7af04e27a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#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