mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Net.Mime;
 | 
						|
using Microsoft.AspNetCore.Mvc;
 | 
						|
 | 
						|
namespace Jellyfin.Api
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Base api controller for the API setting a default route.
 | 
						|
    /// </summary>
 | 
						|
    [ApiController]
 | 
						|
    [Route("[controller]")]
 | 
						|
    [Produces(MediaTypeNames.Application.Json)]
 | 
						|
    public class BaseJellyfinApiController : ControllerBase
 | 
						|
    {
 | 
						|
    }
 | 
						|
}
 |