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

17 lines
200 B
PHP

<?php
/**
* 对称加密解密
*/
namespace plugin\dev\encrypt;
use app\Plugin;
class App extends Plugin
{
public function index()
{
return $this->view();
}
}