mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-25 15:55:00 -05:00
17 lines
447 B
C#
17 lines
447 B
C#
using Jellyfin.Api.Models.ExceptionDtos;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Jellyfin.Api
|
|
{
|
|
/// <summary>
|
|
/// Base api controller for the API setting a default route.
|
|
/// </summary>
|
|
[ApiController]
|
|
[Route("[controller]")]
|
|
[ProducesResponseType(typeof(ExceptionDto), StatusCodes.Status500InternalServerError)]
|
|
public class BaseJellyfinApiController : ControllerBase
|
|
{
|
|
}
|
|
}
|