9 lines
225 B
C#
9 lines
225 B
C#
using System.IO;
|
|
using NodePipeline.Configuration.Abstractions.Models.Execute;
|
|
|
|
namespace NodePipeline.Configuration.Abstractions.Interfaces;
|
|
|
|
public interface IPipelineConfigLoader
|
|
{
|
|
PipelineConfig Load(Stream stream);
|
|
} |