7 lines
101 B
C#
7 lines
101 B
C#
|
8 years ago
|
namespace cli.Modules
|
||
|
|
{
|
||
|
|
public interface IModule
|
||
|
|
{
|
||
|
|
void Run (string[] args);
|
||
|
|
}
|
||
|
|
}
|