mirror of
https://github.com/FalloutCollaborationProject/FCP-Mod-Updater.git
synced 2026-07-27 17:04:05 -07:00
12 lines
278 B
C#
12 lines
278 B
C#
using FCPModUpdater.Models;
|
|
|
|
namespace FCPModUpdater.Services;
|
|
|
|
public interface IModDiscoveryService
|
|
{
|
|
Task<IReadOnlyList<InstalledMod>> DiscoverModsAsync(
|
|
string modsDirectory,
|
|
IProgress<string>? progress = null,
|
|
CancellationToken ct = default);
|
|
}
|