- 新增二维码生成端点,自动检测局域网 IP,前端扫一扫即可打开网站 - 提取 IApiResponse 接口,ServiceRequestBinder 支持强类型请求 DTO 绑定 - FileStream 端点迁移至 AppEndpoints 统一注册,管道支持 FileStreamResponse 原始文件返回 - 文件库端点全面使用 MapGet<TService, TRequest> 泛型注册 - 移除 Avalonia-API/Extensions 中的业务端点文件,统一由 Services 层管理
10 lines
198 B
C#
10 lines
198 B
C#
using Avalonia_Services.Core;
|
|
|
|
namespace Avalonia_Services.Services.QrCode
|
|
{
|
|
public interface IQrCodeService
|
|
{
|
|
Task<object?> GenerateQrCodeAsync(ServiceEndpointContext ctx);
|
|
}
|
|
}
|