Files
jellyfin-jellyfin-1/Jellyfin.Api/BaseJellyfinApiController.cs

17 lines
447 B
C#
Raw Normal View History

using Jellyfin.Api.Models.ExceptionDtos;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Api
{
2019-11-23 20:31:17 +01:00
/// <summary>
/// Base api controller for the API setting a default route.
/// </summary>
[ApiController]
[Route("[controller]")]
[ProducesResponseType(typeof(ExceptionDto), StatusCodes.Status500InternalServerError)]
public class BaseJellyfinApiController : ControllerBase
{
}
}