mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-23 02:53:29 +00:00
636b868bf1
Co-authored-by: Johan Preynat <johan.preynat@gmail.com>
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { WorkerEntrypoint } from 'cloudflare:workers';
|
|
|
|
export * from './CacheObject';
|
|
|
|
export default class Worker extends WorkerEntrypoint {
|
|
fetch() {
|
|
return new Response('Hello, world!');
|
|
}
|
|
}
|