aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Startup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/Startup.cs')
-rw-r--r--Emby.Server.Implementations/Startup.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Startup.cs b/Emby.Server.Implementations/Startup.cs
new file mode 100644
index 000000000..164c7eeaa
--- /dev/null
+++ b/Emby.Server.Implementations/Startup.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Linq;
+using MediaBrowser.Api;
+using MediaBrowser.Controller;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.Http;
+using Microsoft.AspNetCore.Routing;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Logging;
+
+namespace Emby.Server.Implementations
+{
+ public class Startup
+ {
+ public IConfiguration Configuration { get; }
+
+ public Startup(IConfiguration configuration) => Configuration = configuration;
+
+ // Use this method to add services to the container.
+ public void ConfigureServices(IServiceCollection services)
+ {
+ services.AddRouting();
+ }
+
+ // Use this method to configure the HTTP request pipeline.
+ public void Configure(IApplicationBuilder app)
+ {
+
+ }
+ }
+
+}