mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 19:12:49 +00:00
21 lines
223 B
PHP
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()
|
|
{
|
|
|
|
}
|
|
}
|