(req: NextRequest)
| 168 | } |
| 169 | |
| 170 | export async function GET(req: NextRequest) { |
| 171 | return new Response( |
| 172 | JSON.stringify({ message: "流式API端点就绪" }), |
| 173 | { |
| 174 | status: 200, |
| 175 | headers: { "Content-Type": "application/json" } |
| 176 | } |
| 177 | ); |
| 178 | } |
nothing calls this directly
no outgoing calls
no test coverage detected