15 lines
451 B
Java
15 lines
451 B
Java
import cat.hack3.codingtests.marsrover.MarsRover;
|
|
import cat.hack3.codingtests.marsrover.api.RotableRiderRover;
|
|
import cat.hack3.codingtests.marsrover.api.cartography.PlanetMap;
|
|
import cat.hack3.codingtests.marsrover.gps.MarsMap;
|
|
|
|
module mars.station {
|
|
requires rover.api;
|
|
requires java.logging;
|
|
|
|
provides PlanetMap.Provider
|
|
with MarsMap.Provider;
|
|
|
|
provides RotableRiderRover.Provider
|
|
with MarsRover.Provider;
|
|
} |