Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
space-shuffler
like
10
Sleeping
App
Files
Files
Community
974fcef
space-shuffler
/
app
/
actions.ts
enzostvs
HF staff
initial commit
f70bb71
5 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
"use server"
import
{ fetchSpaceRandomly }
from
"@/utils/network"
export
const
getSpace
=
async
(
) => {
const
space =
await
fetchSpaceRandomly
();
return
space;
}