aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
blob: 62408ee703cdd2ce1243e1aa7cc5d47897d29ebc (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" }
        };
    }
}