michael-nmg/java-project-71

View on GitHub
app/src/main/java/hexlet/code/parsers/Parser.java

Summary

Maintainability
A
0 mins
Test Coverage
package hexlet.code.parsers;

import java.util.Map;
import java.io.IOException;

public interface Parser {
    Map<String, Object> parse(byte[] filePath) throws IOException;
}