mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 05:04:51 +08:00
15 lines
257 B
Plaintext
15 lines
257 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace {namespace};
|
|
|
|
class {class}
|
|
{
|
|
#[\BotCommand(match: '测试{basename}')]
|
|
public function firstBotCommand(\BotContext $ctx): void
|
|
{
|
|
$ctx->reply('这是{name}插件的第一个命令!');
|
|
}
|
|
}
|