Files
mixtape/zero.Web/ZeroApplicationBuilderExtensions.cs
T

12 lines
284 B
C#
Raw Normal View History

2020-04-15 14:09:52 +02:00
using Microsoft.AspNetCore.Builder;
2021-09-29 15:46:23 +02:00
using System;
2020-11-05 00:46:18 +01:00
using zero.Web.Middlewares;
2020-04-15 14:09:52 +02:00
namespace zero.Web
{
public static class ZeroApplicationBuilderExtensions
{
2021-09-29 15:46:23 +02:00
public static IZeroApplicationBuilder UseZero(this IApplicationBuilder app) => new ZeroApplicationBuilder(app);
2020-04-15 14:09:52 +02:00
}
}