mirror of
https://github.com/WerySkok/nativegallery.git
synced 2024-11-15 11:39:13 +03:00
16 lines
No EOL
269 B
PHP
16 lines
No EOL
269 B
PHP
<?php
|
|
namespace App\Controllers;
|
|
|
|
use \App\Services\{Router, Auth, DB, Json};
|
|
use \App\Controllers\ExceptionRegister;
|
|
use \App\Core\Page;
|
|
use \App\Controllers\Api\Login;
|
|
class ApiController
|
|
{
|
|
|
|
|
|
public static function login() {
|
|
return new Login();
|
|
}
|
|
|
|
} |