mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
10 lines
193 B
C#
10 lines
193 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Flv.Pipeline
|
|
{
|
|
public interface ISimpleProcessingRule : IProcessingRule
|
|
{
|
|
void Run(FlvProcessingContext context, Action next);
|
|
}
|
|
}
|