node-smb-server
Version:
A Pure JavaScript SMB Server Implementation
30 lines (16 loc) • 305 B
JavaScript
function App() {
}
App.prototype.use = function () {
};
App.prototype.get = function () {
};
App.prototype.post = function () {
};
function Express() {
}
Express.prototype.create = function () {
return new App();
};
Express.prototype.static = function (path) {
};
module.exports = Express;