This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#*-- Autores. | |
# Javier Farias | |
# Vicente Abarca | |
# Karen Cifuentes | |
#*-- Dependencias. | |
import os | |
import pandas as pd | |
import matplotlib.pyplot as plt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const logger = require("firebase-functions/logger") // Optional logger from Firebase. | |
async function handler(params) { | |
return new Promise(async (resolve, reject) => { | |
try { | |
// Code here ... | |
return resolve(); | |
} catch (err) { | |
logger.warn("something wrong in handler", err); |
OlderNewer