2022-12-04 17:50:10 +04:00
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
2022-12-02 21:20:08 +04:00
|
|
|
|
|
|
|
public class Main {
|
|
|
|
private static Logger logger = null;
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2022-12-04 17:50:10 +04:00
|
|
|
logger = LogManager.getLogger(Main.class);
|
|
|
|
new FormMapWithSetLocomotives(logger);
|
2022-12-02 21:20:08 +04:00
|
|
|
}
|
|
|
|
}
|