mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 23:55:20 +00:00
666e8426e1
Co-authored-by: Nicolas Dorseuil <nicolas@gitbook.io>
10 lines
361 B
TypeScript
10 lines
361 B
TypeScript
import type { Queue } from '@opennextjs/aws/types/overrides.js';
|
|
|
|
export default {
|
|
name: 'GitbookISRQueue',
|
|
send: async (msg) => {
|
|
// We should never reach this point in the server. If that's the case, we should log it.
|
|
console.warn('GitbookISRQueue: send called on server side, this should not happen.', msg);
|
|
},
|
|
} satisfies Queue;
|