mirror of https://github.com/embarklabs/embark.git
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
|
const fs = require('../../core/fs.js');
|
||
|
|
||
|
class ENS {
|
||
|
constructor(embark, options) {
|
||
|
this.logger = embark.logger;
|
||
|
this.events = embark.events;
|
||
|
this.web3 = options.web3;
|
||
|
this.embark = embark;
|
||
|
}
|
||
|
}
|