mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +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'); |