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.
recyclarr/src/Recyclarr.Platform/IAppPaths.cs

14 lines
356 B

using System.IO.Abstractions;
namespace Recyclarr.Platform;
public interface IAppPaths
{
IDirectoryInfo AppDataDirectory { get; }
IDirectoryInfo LogDirectory { get; }
IDirectoryInfo ReposDirectory { get; }
IDirectoryInfo CacheDirectory { get; }
IDirectoryInfo ConfigsDirectory { get; }
IDirectoryInfo IncludesDirectory { get; }
}