mirror of
https://github.com/aoaostar/toolbox.git
synced 2025-12-27 15:01:17 +00:00
18 lines
191 B
PHP
18 lines
191 B
PHP
<?php
|
|
|
|
namespace app\controller;
|
|
|
|
|
|
class Index extends Base
|
|
{
|
|
public function index()
|
|
{
|
|
return view();
|
|
}
|
|
|
|
public function stars()
|
|
{
|
|
return view();
|
|
}
|
|
}
|