mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
22 lines
449 B
C#
22 lines
449 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Teknik.Configuration;
|
|
|
|
namespace Teknik.ContentScanningService
|
|
{
|
|
public abstract class ContentScanner
|
|
{
|
|
protected readonly Config _config;
|
|
|
|
public ContentScanner(Config config)
|
|
{
|
|
_config = config;
|
|
}
|
|
|
|
public abstract Task<ScanResult> ScanFile(Stream stream);
|
|
}
|
|
}
|