patterns/command/remote/command.d

7 lines
74 B
D
Raw Normal View History

2022-12-05 07:38:19 +00:00
module command.remote.command;
interface Command
{
void execute();
}