1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-23 16:24:29 +00:00
pixelfed/app/Services/ProfileService.php
2021-07-26 18:47:40 -06:00

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);
}
}