diff options
| author | Geo Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-04-13 17:34:02 +0300 |
|---|---|---|
| committer | Geo Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-04-13 17:34:02 +0300 |
| commit | 883edd61fe0f375ef3e6d86cbac5ea99cdf7d752 (patch) | |
| tree | 2e43d11792447f632c8e8413f23a2fd68d089820 /javascript/freq.js | |
| parent | f9075f302929fd81f63ba48adcc3c596bf8376b4 (diff) | |
| download | linkeysearch-883edd61fe0f375ef3e6d86cbac5ea99cdf7d752.tar.gz linkeysearch-883edd61fe0f375ef3e6d86cbac5ea99cdf7d752.tar.bz2 linkeysearch-883edd61fe0f375ef3e6d86cbac5ea99cdf7d752.zip | |
patches for keygan; patches shall be absorbed into the main proccedure (work in progress)
Diffstat (limited to 'javascript/freq.js')
| -rw-r--r-- | javascript/freq.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/javascript/freq.js b/javascript/freq.js index 75c862e..f760926 100644 --- a/javascript/freq.js +++ b/javascript/freq.js @@ -22,7 +22,7 @@ const os = require('os'); const {Storage} = require('@google-cloud/storage'); // import Google Cloud client library - +console.log('dependensies initialized'); // #2 // SETUP PERSONALIZED CONSTANTS AND PARAMETRES @@ -142,7 +142,7 @@ async function upload_file( bucketName, srcFilePath, trgFilePath ) { * used as entry-point function (in case of Google Cloud function) */ -exports.main = () => { // google cloud function entry point +var main = () => { // google cloud function entry point console.log('temporary file:', temp_file); @@ -192,3 +192,5 @@ exports.main = () => { // google cloud function entry point }); } + +main();
\ No newline at end of file |
