AppService.php 223 B

1234567891011121314151617181920
  1. <?php
  2. namespace app;
  3. use crmeb\utils\Json;
  4. use think\facade\Db;
  5. use think\Service;
  6. class AppService extends Service
  7. {
  8. public $bind = [
  9. 'json' => Json::class
  10. ];
  11. public function boot()
  12. {
  13. }
  14. }