Update imports batch 47-51
cgen-83fc3473ac794a639993731db712faf9
This commit is contained in:
parent
39039e7c69
commit
ff141b4a56
5 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
||||||
import { getAdminClient } from "../../_supabase";
|
import { getAdminClient } from "../../_supabase.js";
|
||||||
|
|
||||||
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
||||||
if (req.method !== "GET") {
|
if (req.method !== "GET") {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
||||||
import { getAdminClient } from "../../_supabase";
|
import { getAdminClient } from "../../_supabase.js";
|
||||||
|
|
||||||
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
export default async function handler(req: VercelRequest, res: VercelResponse) {
|
||||||
if (req.method !== "GET") {
|
if (req.method !== "GET") {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { getAdminClient } from "../_supabase";
|
import { getAdminClient } from "../_supabase.js";
|
||||||
|
|
||||||
export default async (req: Request) => {
|
export default async (req: Request) => {
|
||||||
if (req.method !== "POST") {
|
if (req.method !== "POST") {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { getAdminClient } from "../_supabase";
|
import { getAdminClient } from "../_supabase.js";
|
||||||
|
|
||||||
export default async (req: Request) => {
|
export default async (req: Request) => {
|
||||||
if (req.method !== "PUT" && req.method !== "POST") {
|
if (req.method !== "PUT" && req.method !== "POST") {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { getAdminClient } from "../_supabase";
|
import { getAdminClient } from "../_supabase.js";
|
||||||
|
|
||||||
export default async (req: Request) => {
|
export default async (req: Request) => {
|
||||||
if (req.method !== "POST") {
|
if (req.method !== "POST") {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue