Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mxmxk
/
ollama
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a00794e
ollama
/
utils
/
app
/
folders.ts
rippanteq7
Upload folder using huggingface_hub
bbef364
verified
8 months ago
raw
Copy download link
history
blame
Safe
175 Bytes
import
{
FolderInterface
}
from
'@/types/folder'
;
export
const
saveFolders
= (
folders: FolderInterface[]
) => {
localStorage
.
setItem
(
'folders'
,
JSON
.
stringify
(folders));
};