1
0
mirror of synced 2024-07-01 00:07:39 +00:00
Tapeti/Tapeti.Flow/ConfigExtensions.cs

12 lines
245 B
C#

namespace Tapeti.Flow
{
public static class ConfigExtensions
{
public static TapetiConfig WithFlow(this TapetiConfig config)
{
config.Use(new FlowMiddleware());
return config;
}
}
}