fix: correct authOptions import path in prewarm route

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-19 16:26:43 -08:00
parent 1ff58049c0
commit aeedc76a18

View File

@@ -1,6 +1,6 @@
import { NextRequest, NextResponse } from 'next/server'; import { NextRequest, NextResponse } from 'next/server';
import { getServerSession } from 'next-auth'; import { getServerSession } from 'next-auth';
import { authOptions } from '@/lib/auth'; import { authOptions } from '@/lib/auth/authOptions';
import { prewarmWorkspace } from '@/lib/cloud-run-workspace'; import { prewarmWorkspace } from '@/lib/cloud-run-workspace';
/** /**