Module Biocaml_entrez.Make.Pubmed (.ml)

module Pubmed: 
sig
type t = {
   pmid : int;
   title : string;
   abstract : string;
}
val search : string -> t list F.fetched
end