mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
17 lines
206 B
PHP
17 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);
|
|
}
|
|
}
|