Onyxl's picture
Upload 2661 files
8c763fb verified
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Management.Automation.Remoting;
namespace FuzzTests
{
public static class Target
{
public static void ExtractToken(ReadOnlySpan<byte> tokenResponse)
{
RemoteSessionHyperVSocketClient.ExtractToken(tokenResponse);
}
}
}