mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-09 01:35:35 +08:00
21 lines
341 B
PHP
21 lines
341 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Plugin;
|
|
|
|
/**
|
|
* 单文件插件声明类
|
|
*/
|
|
class ZMPlugin
|
|
{
|
|
use Traits\BotActionTrait;
|
|
use Traits\BotCommandTrait;
|
|
use Traits\BotEventTrait;
|
|
use Traits\CronTrait;
|
|
use Traits\EventTrait;
|
|
use Traits\InitTrait;
|
|
use Traits\PluginLoadTrait;
|
|
use Traits\RouteTrait;
|
|
}
|