main
1using mars.rover.common;
2
3namespace mars.rover.presentation.infrastructure
4{
5    public interface CommandProcessor : Command
6    {
7        void add(Command command);
8    }
9}