13 lines
331 B
C#
13 lines
331 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Emby.Server.Implementations
|
|
{
|
|
public static class ConfigurationOptions
|
|
{
|
|
public static readonly Dictionary<string, string> Configuration = new Dictionary<string, string>
|
|
{
|
|
{"HttpListenerHost:DefaultRedirectPath", "web/index.html"}
|
|
};
|
|
}
|
|
}
|