feat: Working version with google drive storage.

This commit is contained in:
charlesgauthereau
2026-01-24 12:13:55 +01:00
parent 4eeeef3427
commit a64a80910d
18 changed files with 397 additions and 562 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
import type {
import {
StorageProviderKind,
StorageInput,
StorageResult,
StorageResult, StorageMetaData,
} from '../types';
import {uploadLocal, getLocal, deleteLocal, pingLocal} from './local';
@@ -46,7 +46,7 @@ const handlers: Record<StorageProviderKind, ProviderHandler> = {
export async function dispatchViaProvider(
kind: StorageProviderKind,
config: any,
input: StorageInput
input: StorageInput,
): Promise<StorageResult> {
const provider = handlers[kind];