-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
docs(Readme): roadmap, examples
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export class ConversationStorage { | ||
set(conversationId: string, value: any, expiresAt?: number) { | ||
Check failure on line 2 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 2 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 2 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 2 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 2 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
|
||
return new Promise((resolve, reject) => {}); | ||
Check failure on line 3 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 3 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 3 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
|
||
} | ||
|
||
get(conversationId: string) { | ||
Check failure on line 6 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
|
||
// Returns a Promise | ||
return new Promise((resolve, reject) => {}); | ||
Check failure on line 8 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 8 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
Check failure on line 8 in src/nodes/shared/storage.ts GitHub Actions / build (18.x)
|
||
} | ||
} |