autobaan/src/workers/requester/index.ts

6 lines
120 B
TypeScript
Raw Normal View History

import { Worker } from '../types'
2022-02-11 13:20:15 +01:00
export const work: Worker<undefined, void> = async (): Promise<void> => {
return
}