Files
Hyperbar/Hyperbar/IDispatcher.cs
T
2024-02-11 18:09:22 +00:00

7 lines
94 B
C#

namespace Hyperbar;
public interface IDispatcher
{
Task InvokeAsync(Action action);
}