forked from mirror/pixelfed
16 lines
206 B
PHP
16 lines
206 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
class ProfileService
|
|
{
|
|
public static function get($id)
|
|
{
|
|
return AccountService::get($id);
|
|
}
|
|
|
|
public static function del($id)
|
|
{
|
|
return AccountService::del($id);
|
|
}
|
|
}
|