miao-plugin/apps/poke.js

18 lines
276 B
JavaScript
Raw Normal View History

2022-09-17 20:40:15 +00:00
import { App } from '../components/index.js'
import Wife from './character/AvatarWife.js'
2022-09-17 20:40:15 +00:00
let app = App.init({
id: 'poke',
name: '戳一戳',
2022-09-17 20:40:15 +00:00
event: 'poke'
})
app.reg({
pockWife: {
fn: Wife.poke,
describe: '#老公 #老婆 查询'
}
2022-09-17 20:40:15 +00:00
})
export default app