8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
|
module.exports = {
|
||
|
'/path/to/dir': {
|
||
|
'abc.txt': 'ABC',
|
||
|
'def.dat': 'DEF',
|
||
|
'test123.txt': '123',
|
||
|
'test456.dat': '456'
|
||
|
}
|
||
|
};
|