ConfigurationOptions.cs 331 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace Emby.Server.Implementations
  3. {
  4. public static class ConfigurationOptions
  5. {
  6. public static readonly Dictionary<string, string> Configuration = new Dictionary<string, string>
  7. {
  8. {"HttpListenerHost:DefaultRedirectPath", "web/index.html"}
  9. };
  10. }
  11. }