package project.command; import project.view.CliView; public interface Command { String getName(); String getDescription(); void execute(String[] args, CliView view); }