2019-06-27 05:38:45 +02:00
|
|
|
'use strict';
|
|
|
|
|
require('dotenv').config();
|
|
|
|
|
|
2019-07-25 02:00:27 +02:00
|
|
|
const { checkBookingChanges } = require('../services/integration/checkBookingChange');
|
2019-06-27 05:38:45 +02:00
|
|
|
|
2019-07-25 02:00:27 +02:00
|
|
|
checkBookingChanges().then(() => process.exit()).catch(() => process.exit());
|