bpframework-cli
Version:
cli of bpframework
20 lines (16 loc) • 340 B
text/typescript
;
/**
* Copyright (c) 2020 Copyright bp All Rights Reserved.
* Author: brian.li
* Date: 2020-11-11 14:42
* Desc:
*/
import { Scheduled, Service } from 'bpframework';
()
class DemoScheduled {
({ cron: '* 0 * * * *' })
onTask(): Promise<false | any> {
console.log('tick');
return null;
}
}