Skip to content

Commit

Permalink
fix vercel error
Browse files Browse the repository at this point in the history
  • Loading branch information
VladBrok committed Oct 2, 2023
1 parent 79d7bfb commit c755fea
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions api/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import type { VercelRequest, VercelResponse } from "@vercel/node";
import { ReqBody } from "alice-types";

import authNotSupported from "./helpers/auth-not-supported";
import requestAuth from "./helpers/request-auth";
import handleUtterance from "./helpers/handle-utterance";
import greetKnownUser from "./helpers/greet-known-user";
import greetNewUser from "./helpers/greet-new-user";
import handleError from "./helpers/handle-error";
import { initICU } from "./helpers/icu";
import { pong } from "./helpers/pong";
import help from "./helpers/help";
import authNotSupported from "../utils/api-helpers/auth-not-supported";
import requestAuth from "../utils/api-helpers/request-auth";
import handleUtterance from "../utils/api-helpers/handle-utterance";
import greetKnownUser from "../utils/api-helpers/greet-known-user";
import greetNewUser from "../utils/api-helpers/greet-new-user";
import handleError from "../utils/api-helpers/handle-error";
import { initICU } from "../utils/api-helpers/icu";
import { pong } from "../utils/api-helpers/pong";
import help from "../utils/api-helpers/help";

async function handler(req: VercelRequest, res: VercelResponse) {
if (req.method !== "POST") {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c755fea

Please sign in to comment.