blob: e8299133d621dec08f1576af5d58591596f8a8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace handler\admin;
use Response;
class Index extends AdminRequestHandler {
public function get(): Response {
return $this->skin->renderPage('admin/index');
}
}
|