main
1using mars.rover.common;
2
3namespace mars.rover.presentation.infrastructure
4{
5    public interface EventProcessor : Command
6    {
7        void process<Command, Input>(Input input) where Command : ParameterizedCommand<Input>;
8    }
9}