aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
blob: 9bc60972a18b4cc2dbbdd32018e8a4c8aa3a9ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"},
            {"MusicBrainz:BaseUrl", "https://www.musicbrainz.org"}
        };
    }
}