miao-plugin/main.js
柠檬冲水 2f78b7a1c7
主动标注正则起始符
Signed-off-by: 柠檬冲水 <10424920+ningmengchongshui@user.noreply.gitee.com>
2023-10-30 07:52:22 +00:00

12 lines
277 B
JavaScript

import { createApps } from 'alemonjs'
import { apps } from './index.js'
const app = createApps(import.meta.url)
app.setMessage(async e => {
await runtime.init(e)
e.sender = {}
e.sender.card = e.user_name
return e
})
app.setCharacter('#')
app.component(apps)
app.mount()