12 lines
401 B
C#
12 lines
401 B
C#
|
|
// Copyright (c) The Geekeey Authors
|
||
|
|
// SPDX-License-Identifier: EUPL-1.2
|
||
|
|
|
||
|
|
namespace Geekeey.Request.Tests;
|
||
|
|
|
||
|
|
public class InterfaceInheritedScalarHandler : IScalarRequestHandler<InterfaceInheritedScalarRequest, string>
|
||
|
|
{
|
||
|
|
public Task<string> HandleAsync(InterfaceInheritedScalarRequest request, CancellationToken cancellationToken)
|
||
|
|
{
|
||
|
|
return Task.FromResult($"{request.Name}-InterfaceHandled");
|
||
|
|
}
|
||
|
|
}
|