UNPKG

netlify

Version:

Netlify command line tool

12 lines (8 loc) 260 B
import type { Config } from "@netlify/functions" export default async (req: Request) => { const { next_run } = await req.json() console.log("Received event! Next invocation at:", next_run) } export const config: Config = { schedule: "@hourly" }