Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import * as functions from 'firebase-functions';
  2.  
  3. const CRON_SCHEDULE = '* * * * *';
  4.  
  5. export const cronMailchimp = functions.region('europe-west1').pubsub
  6. .schedule(CRON_SCHEDULE).onRun(async context => {
  7. console.log(`I will write this every minute`)
  8. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement