miao-plugin/apps/poke.js

15 lines
272 B
JavaScript
Raw Normal View History

2022-09-17 20:40:15 +00:00
import { App } from '../components/index.js'
import { pokeWife } from './character/avatar-wife.js'
let app = App.init({
id: 'poke',
name: '角色查询',
event: 'poke'
})
app.reg('pock-wife', pokeWife, {
describe: '#老公 #老婆 查询'
})
export default app