aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Configurations/Extensions/ConfigureSwagger.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Configurations/Extensions/ConfigureSwagger.cs')
-rw-r--r--src/DevHive.Web/Configurations/Extensions/ConfigureSwagger.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/DevHive.Web/Configurations/Extensions/ConfigureSwagger.cs b/src/DevHive.Web/Configurations/Extensions/ConfigureSwagger.cs
deleted file mode 100644
index a0641ab..0000000
--- a/src/DevHive.Web/Configurations/Extensions/ConfigureSwagger.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using Microsoft.AspNetCore.Builder;
-using Microsoft.Extensions.DependencyInjection;
-using Microsoft.OpenApi.Models;
-
-namespace DevHive.Web.Configurations.Extensions
-{
- public static class SwaggerExtensions
- {
- public static void SwaggerConfiguration(this IServiceCollection services)
- {
- services.AddSwaggerGen(c =>
- {
- c.SwaggerDoc("v1", new OpenApiInfo { Title = "API", Version = "v1" });
- });
- }
-
- public static void UseSwaggerConfiguration(this IApplicationBuilder app)
- {
- app.UseSwagger();
- app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "API v1"));
- }
- }
-} \ No newline at end of file