Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LevinAleksey
/
vk_site
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
vk_site
/
src
/
app
/
api
/
route.ts
Levin-Aleksey
Initial commit
52d998d
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
134 Bytes
import
{
NextResponse
}
from
"next/server"
;
export
async
function
GET
(
) {
return
NextResponse
.
json
({
message
:
"Hello, world!"
});
}