2025-01-29 18:09:21 +00:00
|
|
|
using AspNetCore.Swagger.Themes;
|
|
|
|
|
2025-01-30 17:58:13 +00:00
|
|
|
namespace LookingGlass.Util.SwaggerTheme;
|
2025-01-29 18:09:21 +00:00
|
|
|
|
|
|
|
public class CustomStyle : ModernStyle
|
|
|
|
{
|
|
|
|
protected CustomStyle(string fileName)
|
|
|
|
: base(fileName) { }
|
|
|
|
|
|
|
|
public static CustomStyle CustomModern => new("modern.custom.css");
|
|
|
|
}
|