Files
toolbox/plugin/dev/uuid/App.php
T
2023-09-28 16:21:06 +08:00

17 lines
192 B
PHP

<?php
/**
* UUID生成器
*/
namespace plugin\dev\uuid;
use app\Plugin;
class App extends Plugin
{
public function index()
{
return $this->view();
}
}