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