package com.crawler.command; public interface Command { void execute(String[] args) throws Exception; String getCommandName(); String getDescription(); }