package com.example.datacollect.service; import java.util.List; public interface HistoryService { void add(String command); List getHistory(); void clear(); String get(int index); }