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