nk-lihaink-cn/app/common/service/AuthService.php
2023-01-19 02:36:01 +00:00

28 lines
555 B
PHP

<?php
/**
* *
* * ============================================================================
* * Created by PhpStorm.
* * User: Ice
* * 邮箱: ice@sbing.vip
* * 网址: https://sbing.vip
* * Date: 2019/9/20 下午5:19
* * ============================================================================.
*/
namespace app\common\service;
use think\Service;
use app\common\library\Auth;
/**
* 认证服务
*/
class AuthService extends Service
{
public function register()
{
$this->app->bind('auth', Auth::class);
}
}