Files
Examples/GerstITS.Examples.Api/Endpoints/Endpoints.cs
T

11 lines
275 B
C#

namespace GerstITS.Examples.Api.Endpoints;
internal static partial class Endpoints
{
internal static RouteGroupBuilder MapEndpoints(this IEndpointRouteBuilder root)
{
return root.MapCustomerEndpoints()
.MapCustomerNoteEndpoints();
}
}