@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
18 lines (17 loc) • 415 B
JavaScript
import immutable from 'immutable';
export default class SubgraphDataSource {
manifest;
resolveFile;
protocol;
constructor(options) {
this.manifest = options.manifest;
this.resolveFile = options.resolveFile;
this.protocol = options.protocol;
}
validateManifest() {
return immutable.List();
}
handlerTypes() {
return immutable.List([]);
}
}