12 lines
355 B
C#
12 lines
355 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace HopFrame.Api;
|
|
|
|
public static class ControllerExtensions {
|
|
|
|
public static IMvcBuilder AddController<TController>(this IMvcBuilder builder) where TController : ControllerBase {
|
|
return builder.AddApplicationPart(typeof(TController).Assembly);
|
|
}
|
|
|
|
} |