mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 02:27:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			207 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			207 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace API.Interfaces
 | |
| {
 | |
|     public interface IDirectoryService
 | |
|     {
 | |
|         IEnumerable<string> ListDirectory(string rootPath);
 | |
|     }
 | |
| } |