mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
15 lines
349 B
C++
15 lines
349 B
C++
|
|
#include "pch.h"
|
||
|
|
#include <common/logger/logger.h>
|
||
|
|
#include <common/SettingsAPI/settings_helpers.h>
|
||
|
|
#include <spdlog/sinks/null_sink.h>
|
||
|
|
|
||
|
|
std::shared_ptr<spdlog::logger> Logger::logger = spdlog::null_logger_mt("Common.Utils.UnitTests");
|
||
|
|
|
||
|
|
namespace PTSettingsHelper
|
||
|
|
{
|
||
|
|
std::wstring get_root_save_folder_location()
|
||
|
|
{
|
||
|
|
return L"";
|
||
|
|
}
|
||
|
|
}
|