mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
import { NextResponse } from 'next/server';
|
|
|
|
export function authenticationRequiredResponse(): NextResponse {
|
|
return NextResponse.json({ error: 'Authentication required' }, { status: 401 });
|
|
}
|