mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-26 21:51:06 +00:00
9e469cc83e
- Added required packages - Added command to cmd.js - Created graph.js to contain graph logic
18 lines
343 B
JavaScript
18 lines
343 B
JavaScript
const fs = require("fs");
|
|
const klaw = require('klaw');
|
|
const path = require('path');
|
|
const SolidityParser = require("solidity-parser");
|
|
const Viz = require('viz.js');
|
|
|
|
class GraphGenerator {
|
|
constructor(config) {
|
|
this.config = config;
|
|
}
|
|
|
|
generate() {
|
|
console.log("TODO");
|
|
}
|
|
}
|
|
|
|
module.exports = GraphGenerator;
|