shoppingmallv2/app/Backend/UserSNSBackend.php
최준흠git config git config --helpgit config --global user.name 최준흠 a845f6eaf9 shoppingmallv2 init...
2023-08-03 02:59:55 +09:00

15 lines
236 B
PHP

<?php
namespace App\Backend;
use App\Models\UserSNSModel;
class UserSNSBackend extends BaseBackend
{
public function __construct()
{
parent::__construct('UserSNS');
$this->_model = new UserSNSModel();
}
}