mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* feat: implement anonymous usage data collection Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
10 lines
200 B
C#
10 lines
200 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface IFileRepository
|
|
{
|
|
Task<IEnumerable<string>> GetFileExtensions();
|
|
}
|
|
} |