2019-07-08 20:37:14 +02:00
|
|
|
'use strict';
|
|
|
|
|
require('dotenv').config();
|
|
|
|
|
|
2019-07-25 06:53:32 +02:00
|
|
|
const { checkBookingChanges } = require('../services/integration/checkBookingChange');
|
2019-07-08 20:37:14 +02:00
|
|
|
|
2019-07-25 06:53:32 +02:00
|
|
|
checkBookingChanges().then(() => process.exit()).catch(() => process.exit());
|