aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/BaseJellyfinApiController.cs
blob: a34f9eb62f293d36a3480a71334ac5276c22f69a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
    {
    }
}