9 lines
228 B
C#
9 lines
228 B
C#
using Microsoft.AspNetCore.Builder;
|
|
|
|
namespace zero;
|
|
|
|
public static class ZeroApplicationBuilderExtensions
|
|
{
|
|
public static IZeroApplicationBuilder UseZero(this IApplicationBuilder app) => new ZeroApplicationBuilder(app);
|
|
}
|