mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 11:37:34 +01:00
8 lines
174 B
C#
8 lines
174 B
C#
using VoidCat.Model;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface IVirusScanner
|
|
{
|
|
ValueTask<VirusScanResult> ScanFile(Guid id, CancellationToken cts);
|
|
} |