snippeteer/test/index.js

14 lines
251 B
JavaScript

/* eslint-disable no-console */
'use strict';
const dot_parser = require ('../snippets/db/dot_parser');
/**
* test
*/
async function test () {
const data = await dot_parser.create_migration ('db_structure.dot');
console.log (data);
}
test ();