mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-22 09:52:50 +08:00
10 lines
184 B
C#
10 lines
184 B
C#
namespace Ocelot.UnitTests
|
|
{
|
|
public class Wait
|
|
{
|
|
public static Waiter WaitFor(int milliSeconds)
|
|
{
|
|
return new Waiter(milliSeconds);
|
|
}
|
|
}
|
|
} |