forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1import { atom } from "jotai";
2
3const googleDriveAtom = atom<{
4 current_dir: string;
5 parent_dir?: string;
6 parent_id?: string;
7 cache: Record<
8 string,
9 {
10 parent_id?: string;
11 parent_dir?: string;
12 current_dir?: string;
13 }
14 >;
15} | null>(null);
16
17export default googleDriveAtom;