bcv-vf/src/main/java/the/bytecode/club/bytecodeviewer/resources/importing/Importer.java

13 lines
205 B
Java
Raw Normal View History

2021-06-26 15:10:02 +00:00
package the.bytecode.club.bytecodeviewer.resources.importing;
2021-06-26 14:11:23 +00:00
import java.io.File;
/**
* @author Konloch
* @since 6/26/2021
*/
public interface Importer
{
boolean open(File file) throws Exception;
}