2019-02-08 09:13:58 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations
|
|
|
|
{
|
|
|
|
public static class ConfigurationOptions
|
|
|
|
{
|
|
|
|
public static readonly Dictionary<string, string> Configuration = new Dictionary<string, string>
|
|
|
|
{
|
2019-02-17 10:54:47 +00:00
|
|
|
{"HttpListenerHost:DefaultRedirectPath", "web/index.html"}
|
2019-02-08 09:13:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|