Skip to content
Snippets Groups Projects
importer.go 199 B
Newer Older
  • Learn to ignore specific revisions
  • import "io"
    
    
    // Represents an Importer either locally or somewhere on the
    // network.
    type Importer interface {
    	// Import the given ULO/RDF byte stream.
    	Import(rdf io.Reader) error
    }