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