mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-26 19:36:35 +08:00
11 lines
140 B
PHP
11 lines
140 B
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
|
|
class Index extends Base {
|
|
public function index() {
|
|
return json(['welcome']);
|
|
}
|
|
}
|