mirror of
https://github.com/error311/FileRise.git
synced 2026-01-10 22:00:08 -06:00
8 lines
225 B
PHP
8 lines
225 B
PHP
<?php
|
|
// public/api/removeUser.php
|
|
|
|
require_once __DIR__ . '/../../config/config.php';
|
|
require_once PROJECT_ROOT . '/src/controllers/userController.php';
|
|
|
|
$userController = new UserController();
|
|
$userController->removeUser(); |