FireBase Cloud Functions Function Function Function Time

exports.scheduledFunction = functions.pubsub.schedule('every 5 minutes').onRun((context) => {
  console.log('This will be run every 5 minutes!');
  return null;
});
Mysterious Macaque