import { app, InvocationContext, Timer } from "@azure/functions"; // タイマートリガー処理のサンプルです // TODO:開発が進んだら削除すること export async function timerTriggerExample( myTimer: Timer, context: InvocationContext ): Promise { context.log("Timer function processed request."); } app.timer("timerTriggerExample", { schedule: "0 */1 * * * *", handler: timerTriggerExample, });