Kavita/API/Interfaces/IDirectoryService.cs
2020-12-17 11:27:19 -06:00

10 lines
207 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace API.Interfaces
{
public interface IDirectoryService
{
IEnumerable<string> ListDirectory(string rootPath);
}
}