org.cqframework.fhir.npm.ILibraryReader Maven / Gradle / Ivy
package org.cqframework.fhir.npm;
import java.io.IOException;
import java.io.InputStream;
import org.hl7.fhir.exceptions.FHIRFormatError;
import org.hl7.fhir.r5.model.Library;
public interface ILibraryReader {
public Library readLibrary(InputStream stream) throws FHIRFormatError, IOException;
}