mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-17 22:03:54 +01:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
import rxjs from "../../lib/rx.js";
|
|
import { get as getConfig } from "../../model/config.js";
|
|
|
|
const config$ = getConfig().pipe(rxjs.shareReplay(1));
|
|
|
|
export function get() {
|
|
return config$;
|
|
}
|