mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-11 18:02:28 +01:00
13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Module dependencies.
|
|
*/
|
|
|
|
var path = require('path');
|
|
var app = require(path.resolve('./config/lib/app'));
|
|
|
|
app.init(function () {
|
|
console.log('Initialized test automation');
|
|
});
|