8 lines
139 B
C#
8 lines
139 B
C#
using mROA.Abstract;
|
|
|
|
namespace mROA.Implementation;
|
|
|
|
public interface IGatewayModule : IDisposable, IInjectableModule
|
|
{
|
|
void Run();
|
|
} |