10 lines
220 B
C#
10 lines
220 B
C#
namespace LootDumpProcessor.Process;
|
|
|
|
public static class PipelineFactory
|
|
{
|
|
public static IPipeline GetInstance()
|
|
{
|
|
// implement actual factory at some point
|
|
return new QueuePipeline();
|
|
}
|
|
} |