/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/AdvancedPaste/AdvancedPaste.UnitTests/Mocks/NoOpKernelQueryCacheService.cs
18 строк
586 B
Ani
[AdvancedPaste]Add paste actions to allow transcoding of media files (#37188)
26 фев 2025, 00:33
Не верифицирован
26 фев 2025, 00:33
f263042
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Threading.Tasks; using AdvancedPaste.Models.KernelQueryCache; using AdvancedPaste.Services; namespace AdvancedPaste.UnitTests.Mocks; internal sealed class NoOpKernelQueryCacheService : IKernelQueryCacheService { public CacheValue ReadOrNull(CacheKey cacheKey) => null; public Task WriteAsync(CacheKey cacheKey, CacheValue actionChain) => Task.CompletedTask; }