mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
15 lines
268 B
JavaScript
15 lines
268 B
JavaScript
import { App } from '../components/index.js'
|
|
import { pokeWife } from './character/AvatarWife.js'
|
|
|
|
let app = App.init({
|
|
id: 'poke',
|
|
name: '戳一戳',
|
|
event: 'poke'
|
|
})
|
|
|
|
app.reg('pock-wife', pokeWife, {
|
|
describe: '#老公 #老婆 查询'
|
|
})
|
|
|
|
export default app
|