bootstrap.php 192 B

12345678
  1. <?php
  2. use JPush\Client;
  3. $app_key = getenv('app_key');
  4. $master_secret = getenv('master_secret');
  5. $client = new Client($app_key, $master_secret);
  6. $registration_id = getenv('registration_id');