parent
715d777f9e
commit
f06a2c829a
@ -1,6 +1,6 @@
|
||||
using Autofac;
|
||||
|
||||
namespace Recyclarr.TrashLib.Cache;
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
public class CacheAutofacModule : Module
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Recyclarr.TrashLib.Cache;
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
[Serializable]
|
||||
public class CacheException : Exception
|
@ -1,4 +1,4 @@
|
||||
namespace Recyclarr.TrashLib.Cache;
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public sealed class CacheObjectNameAttribute : Attribute
|
@ -1,6 +1,6 @@
|
||||
using Recyclarr.TrashLib.Config.Services;
|
||||
|
||||
namespace Recyclarr.TrashLib.Cache;
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
public class CachePersister : ICachePersister
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using Recyclarr.TrashLib.Models;
|
||||
|
||||
namespace Recyclarr.TrashLib.Cache;
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
[CacheObjectName("custom-format-cache")]
|
||||
public record CustomFormatCache
|
@ -1,6 +1,6 @@
|
||||
using Recyclarr.TrashLib.Config.Services;
|
||||
|
||||
namespace Recyclarr.TrashLib.Cache;
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
public interface ICachePersister
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using Recyclarr.TrashLib.Config.Services;
|
||||
|
||||
namespace Recyclarr.TrashLib.Cache;
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
public interface IServiceCache
|
||||
{
|
@ -1,10 +1,10 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using Recyclarr.TrashLib.Cache;
|
||||
using Recyclarr.Cli.Cache;
|
||||
using Recyclarr.TrashLib.Config.Services;
|
||||
using Recyclarr.TrashLib.Models;
|
||||
using Recyclarr.TrashLib.TestLibrary;
|
||||
|
||||
namespace Recyclarr.TrashLib.Tests.Cache;
|
||||
namespace Recyclarr.Cli.Tests.Cache;
|
||||
|
||||
[TestFixture]
|
||||
[Parallelizable(ParallelScope.All)]
|
@ -1,9 +1,9 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using Recyclarr.TrashLib.Cache;
|
||||
using Recyclarr.Cli.Cache;
|
||||
using Recyclarr.TrashLib.Config.Services;
|
||||
using Recyclarr.TrashLib.Interfaces;
|
||||
|
||||
namespace Recyclarr.TrashLib.Tests.Cache;
|
||||
namespace Recyclarr.Cli.Tests.Cache;
|
||||
|
||||
[TestFixture]
|
||||
[Parallelizable(ParallelScope.All)]
|
Loading…
Reference in new issue