// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using System.Threading.Tasks; namespace Squidex.Domain.Users.InMemory { public static class Extensions { public static ValueTask AsValueTask(this T value) { return new ValueTask(value); } } }