mirror of https://github.com/requarks/wiki
24 lines
205 B
24 lines
205 B
7 years ago
|
module.exports = {
|
||
|
async activated() {
|
||
|
|
||
|
},
|
||
|
async deactivated() {
|
||
|
|
||
|
},
|
||
|
async init() {
|
||
|
|
||
|
},
|
||
|
async created() {
|
||
|
|
||
|
},
|
||
|
async updated() {
|
||
|
|
||
|
},
|
||
|
async deleted() {
|
||
|
|
||
|
},
|
||
|
async renamed() {
|
||
|
|
||
|
}
|
||
|
}
|