chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
10 lines
217 B
C#
10 lines
217 B
C#
namespace LootDumpProcessor.Process;
|
|
|
|
public static class PipelineFactory
|
|
{
|
|
public static IPipeline GetInstance()
|
|
{
|
|
// implement actual factory at some point
|
|
return new QueuePipeline();
|
|
}
|
|
} |