You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
339 B
14 lines
339 B
8 months ago
|
using Recyclarr.Cli.Pipelines.CustomFormat.Cache;
|
||
|
|
||
1 week ago
|
namespace Recyclarr.Cli.Tests.Reusable;
|
||
8 months ago
|
|
||
|
public static class CfCache
|
||
|
{
|
||
|
public static CustomFormatCache New(params TrashIdMapping[] mappings)
|
||
|
{
|
||
3 months ago
|
return new CustomFormatCache(
|
||
|
new CustomFormatCacheObject { TrashIdMappings = mappings.ToList() }
|
||
|
);
|
||
8 months ago
|
}
|
||
|
}
|