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