package com.cctv.news.view; public interface OutputView { void showMessage(String message); void showError(String error); void showArticles(String articles); void showWelcome(); void showPrompt(); }