Add account deletion cleanup route

This commit is contained in:
2026-05-09 06:50:22 -04:00
parent a8d2688020
commit 91821a0fc9
7 changed files with 724 additions and 1 deletions
+1
View File
@@ -1,5 +1,6 @@
export interface ElyKvNamespace {
get(key: string): Promise<string | null>;
delete(key: string): Promise<void>;
}
export interface ElyR2Object {