aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
blob: 30bfd874987d0790b3cd829d68603f3d8b75dc99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"}
        };
    }
}