Code & Deploy
siGit Code
Git Hosting
Toggle menu
siGit Code
Git Hosting
Sign in
Sign in
@prakhar-gitlab
/
ai-investment-platform
ai-investment-platform
/
frontend
/
app
/
api
/
health
/
route.ts
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
ts
5 lines
138 Bytes
Copy permalink
Copy
Raw
1
import
{
NextResponse
}
from
"
next/server
"
;
2
3
export
function
GET
()
{
4
return
NextResponse
.
json
({
status
:
"
ok
"
,
service
:
"
frontend
"
});
5
}