10 lines
136 B
JavaScript
10 lines
136 B
JavaScript
'use strict';
|
|
|
|
var Video = {
|
|
test: function() {
|
|
console.warn("Not yet implemented for Android.");
|
|
}
|
|
};
|
|
|
|
module.exports = Video;
|