Source: repository/repository-type.js

/**
 * Supported repository types
 *
 * @readonly
 * @enum {string}
 * @author Teodossi Dossev
 */

const RepositoryType = {
  ONTOP: 'ontop',
  GRAPHDB: 'graphdb'
};

module.exports = RepositoryType;