12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
const path = require('path');
|
|
|
|
function getSmileImage() {
|
|
return path.join(__dirname, '../sample/smile.png');
|
|
}
|
|
|
|
function getCatVideo() {
|
|
return path.join(__dirname, '../sample/cat.mp4');
|
|
}
|
|
|
|
exports.getSmileImage = getSmileImage;
|
|
exports.getCatVideo = getCatVideo; |