feat: init

This commit is contained in:
2024-12-20 18:03:35 +08:00
commit cbfbb0cef7
77 changed files with 2169 additions and 0 deletions

22
app/AppService.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
declare (strict_types = 1);
namespace app;
use think\Service;
/**
* 应用服务类
*/
class AppService extends Service
{
public function register()
{
// 服务注册
}
public function boot()
{
// 服务启动
}
}