CRMEB/app/AppService.php
2019-09-16 15:52:59 +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()
{
}
}