Move RecordingHelper to recordings folder

This commit is contained in:
Patrick Barron 2024-02-15 12:52:24 -05:00
parent 714a83a74c
commit d96fec2330
3 changed files with 3 additions and 5 deletions

View File

@ -1,11 +1,9 @@
#pragma warning disable CS1591
using System;
using System.Globalization;
using System.Text;
using MediaBrowser.Controller.LiveTv;
namespace Jellyfin.LiveTv.EmbyTV
namespace Jellyfin.LiveTv.Recordings
{
internal static class RecordingHelper
{

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Linq;
using System.Threading;
using Jellyfin.Data.Events;
using Jellyfin.LiveTv.EmbyTV;
using Jellyfin.LiveTv.Recordings;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.LiveTv;

View File

@ -1,5 +1,5 @@
using System;
using Jellyfin.LiveTv.EmbyTV;
using Jellyfin.LiveTv.Recordings;
using MediaBrowser.Controller.LiveTv;
using Xunit;