8 lines
247 B
C#
8 lines
247 B
C#
using System.Runtime.CompilerServices;
|
|
namespace FastEndpoints.Swagger;
|
|
internal static class SwaggerExportPathInitializer
|
|
{
|
|
[ModuleInitializer]
|
|
internal static void Initialize() => DocumentOptions.SwaggerExportPath = "wwwroot/openapi";
|
|
}
|