add lib directory
This commit is contained in:
Родитель
f1c5294656
Коммит
5eb7e292f7
|
@ -2,6 +2,8 @@ coverage/
|
|||
node_modules/
|
||||
npm-debug.log
|
||||
|
||||
lib
|
||||
/lib/*
|
||||
|
||||
!test/e2e/sample/lib/*
|
||||
|
||||
**/*.csv
|
|
@ -0,0 +1,9 @@
|
|||
module.exports = function (context, req) {
|
||||
context.log('"./lib/externalScriptFile" function called');
|
||||
const res = {
|
||||
body: {
|
||||
"success":true
|
||||
}
|
||||
}
|
||||
context.done(null, res);
|
||||
};
|
|
@ -0,0 +1,18 @@
|
|||
let sql = require('tedious');
|
||||
|
||||
class Model {
|
||||
getAll() {
|
||||
const request = new sql.Request("select 'hello'", function(err, rowCount) {
|
||||
// no op
|
||||
});
|
||||
return Promise.resolve([]);
|
||||
}
|
||||
|
||||
add() {
|
||||
return Promise.resolve({});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
Model: Model
|
||||
}
|
Загрузка…
Ссылка в новой задаче