mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
|
var common = module.exports;
|
||
|
var path = require('path');
|
||
|
|
||
|
var rootDir = path.join(__dirname, '..');
|
||
|
common.dir = {
|
||
|
lib: rootDir + '/lib'
|
||
|
};
|
||
|
|
||
|
common.assert = require('assert');
|
||
|
common.fake = require('fake');
|