mirror of
https://github.com/nilaoda/N_m3u8DL-RE.git
synced 2025-04-29 22:24:34 +02:00
10 lines
339 B
C#
10 lines
339 B
C#
using N_m3u8DL_RE.Common.Enum;
|
|
using N_m3u8DL_RE.Parser.Config;
|
|
|
|
namespace N_m3u8DL_RE.Parser.Processor;
|
|
|
|
public abstract class ContentProcessor
|
|
{
|
|
public abstract bool CanProcess(ExtractorType extractorType, string rawText, ParserConfig parserConfig);
|
|
public abstract string Process(string rawText, ParserConfig parserConfig);
|
|
} |