patterns/command/remote/nocommand.d

9 lines
127 B
D
Raw Normal View History

2022-12-05 07:38:19 +00:00
module command.remote.nocommand;
import command.remote.command;
class NoCommand : Command
{
override void execute() {}
}