QuitCommand.java

package com.vikingcloud.horsetrack.command;

import com.vikingcloud.horsetrack.AutomatedTellerMachine;

public class QuitCommand implements Command {
    @Override
    public void execute(AutomatedTellerMachine atm) {
        // No-op: signal to main loop to exit
    }
}