mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			399 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			399 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"},
 | 
						|
            {"MusicBrainz:BaseUrl", "https://www.musicbrainz.org"}
 | 
						|
        };
 | 
						|
    }
 | 
						|
}
 |