23 lines
335 B
PHP
Executable File
23 lines
335 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
//use Illuminate\Http\Request;
|
|
//use App\Models\ArticleList;
|
|
//use App\Services\Time;
|
|
//use voku\helper\AntiXSS;
|
|
//use App\Models\Tags;
|
|
//use App\Services\TomTool\Http;
|
|
|
|
class HelloController
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
|
|
echo "hello";
|
|
exit;
|
|
|
|
}
|
|
}
|