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-08-09 21:50:40 +00:00
|
|
|
{ "HttpListenerHost:DefaultRedirectPath", "web/index.html" },
|
|
|
|
{ "MusicBrainz:BaseUrl", "https://www.musicbrainz.org" }
|
2019-02-08 09:13:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|