Functions
Functions
Firebase
Schedulled function in europe
    exports.scheduledFunction = functions.region('europe-west1').pubsub.schedule('every 5 minutes').onRun((context) => {
        console.log('This will be run every 5 minutes!');
        return null;
    });