package com.kgraph.common.service; import com.kgraph.common.config.KgraphConfig; import com.kgraph.common.utils.file.FileUtils; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import java.io.IOException; public interface IFileService { public static final String ES_PATH = KgraphConfig.getProfile() + "/ElasticSearchFile"; void copyFileToESPath(String filePath) throws IOException; }