package com.cctv.news.command; public interface Command { String getName(); String getHelp(); void execute(String[] args); }