mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			282 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			282 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Microsoft.AspNetCore.Mvc;
 | 
						|
 | 
						|
namespace Jellyfin.Api
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Base api controller for the API setting a default route.
 | 
						|
    /// </summary>
 | 
						|
    [ApiController]
 | 
						|
    [Route("[controller]")]
 | 
						|
    public class BaseJellyfinApiController : ControllerBase
 | 
						|
    {
 | 
						|
    }
 | 
						|
}
 |