UNPKG
@oobleck/fluid-backend
Version:
latest (0.1.0-experimental-20210901)
0.1.0-experimental-20210901
Fluid Framework backend for nteract RTC
github.com/alpaix/oobleck
alpaix/oobleck
@oobleck/fluid-backend
/
src
/
index.ts
7 lines
(5 loc)
•
216 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
ICollaborationBackend
}
from
"./types"
;
import
{
FluidBackend
}
from
"./services"
;
export
async
function
createRtcBackend
(
/*options*/
):
Promise
<
ICollaborationBackend
> {
return
new
FluidBackend
(); }