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

17 lines
204 B
PHP

<?php
/**
* 在线进制转换
*/
namespace plugin\dev\hex_convert;
use app\Plugin;
class App extends Plugin
{
public function index()
{
return $this->view();
}
}