export type GetFolderRequest = {
    id: string;
    path?: never;
} | {
    path: string;
    id?: never;
};
