summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns.cpp
blob: 45681c50fbede1a2f5a9aa2fc91de4ab48796858 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/ns/ns.h"
#include "core/hle/service/ns/pl_u.h"

namespace Service {
namespace NS {

void InstallInterfaces(SM::ServiceManager& service_manager) {
    std::make_shared<PL_U>()->InstallAsService(service_manager);
}

} // namespace NS
} // namespace Service