| 12345678910111213141516171819202122 |
- 'use strict';
- const Subscription = require('egg').Subscription;
- /**
- * test
- */
- class Test extends Subscription {
- static get schedule() {
- return {
- interval: '360m',
- type: 'worker',
- immediate: false,
- disable: true,
- };
- }
- async subscribe() {}
- }
- module.exports = Test;
|