nativegallery/app/Controllers/ContestsController.php
themohooks 82888d6e06 fixes
2025-02-11 20:25:11 +03:00

21 lines
No EOL
366 B
PHP

<?php
namespace App\Controllers;
use \App\Services\{Router, Auth, DB, Json};
use \App\Controllers\ExceptionRegister;
use \App\Core\Page;
class ContestsController
{
public static function results()
{
Page::set('Contests/VotingResults');
}
public static function index()
{
Page::set('Contests/VotingIndex');
}
}