//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
using Jellyfin.Api;
using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Server.Integration.Tests.Controllers
{
///
/// Base controller for testing infrastructure.
/// Automatically ignored in generated openapi spec.
///
[ApiExplorerSettings(IgnoreApi = true)]
public class BaseJellyfinTestController : BaseJellyfinApiController
{
}
}