mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
11 lines
237 B
C#
11 lines
237 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface IDirectoryService
|
|
{
|
|
IEnumerable<string> ListDirectory(string rootPath);
|
|
|
|
void ScanLibrary(int libraryId, bool forceUpdate);
|
|
}
|
|
} |