diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:40:17 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:40:17 +0300 |
commit | f7bfdf58def6aadc922e1632f407d1418269a0d7 (patch) | |
tree | d7a0b2819e6a26c11d40ee0b27267ea827fbb345 /handler/admin/Index.php |
initial
Diffstat (limited to 'handler/admin/Index.php')
-rw-r--r-- | handler/admin/Index.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/handler/admin/Index.php b/handler/admin/Index.php new file mode 100644 index 0000000..e829913 --- /dev/null +++ b/handler/admin/Index.php @@ -0,0 +1,13 @@ +<?php + +namespace handler\admin; + +use Response; + +class Index extends AdminRequestHandler { + + public function get(): Response { + return $this->skin->renderPage('admin/index'); + } + +}
\ No newline at end of file |