mirror of
https://github.com/NohamR/N_m3u8DL-RE.git
synced 2025-08-26 23:19:43 +00:00
17 lines
478 B
C#
17 lines
478 B
C#
using N_m3u8DL_RE.Common.Enum;
|
|
using N_m3u8DL_RE.Parser.Config;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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);
|
|
}
|
|
}
|