Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Chrunos
/
load
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2f527a4
load
/
api
/
src
/
store
/
store.js
rifnd
update
2f527a4
5 months ago
raw
Copy download link
history
blame
Safe
211 Bytes
import
{ env }
from
'../config.js'
;
let
_export;
if
(env.
redisURL
) {
_export =
await
import
(
'./redis-store.js'
);
}
else
{
_export =
await
import
(
'./memory-store.js'
);
}
export
default
_export.
default
;