mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
9 lines
357 B
TypeScript
9 lines
357 B
TypeScript
import type { RequestId } from "../../../generated/app-server/RequestId";
|
|
|
|
export function userInputDraftKey(requestId: RequestId, questionId: string): string {
|
|
return `${String(requestId)}:${questionId}`;
|
|
}
|
|
|
|
export function userInputOtherDraftKey(requestId: RequestId, questionId: string): string {
|
|
return `${String(requestId)}:${questionId}:other`;
|
|
}
|