coloring-sync 198 B

12345678
  1. #!/usr/bin/env node
  2. const appConfig = require('../config/app');
  3. const syncService = require('../sync/sync-service');
  4. if (appConfig.sync == 'slave') {
  5. syncService.start().catch(console.error);
  6. }