1. #!/usr/bin/env node
    
  2. 
    
  3. 'use strict';
    
  4. 
    
  5. const deploy = require('../deploy');
    
  6. 
    
  7. const main = async () => await deploy('edge');
    
  8. 
    
  9. main();