CRMEB/app/AppService.php
2019-09-11 11:03:00 +08:00

21 lines
223 B
PHP

<?php
namespace app;
use crmeb\utils\Json;
use think\facade\Db;
use think\Service;
class AppService extends Service
{
public $bind = [
'json' => Json::class
];
public function boot()
{
}
}