mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
15 lines
471 B
TypeScript
15 lines
471 B
TypeScript
// Placeholder for Signal Protocol pre-key management
|
|
// Will be implemented when Signal Protocol is added
|
|
|
|
export async function upload(_bundle: unknown, _token: string): Promise<void> {
|
|
// TODO: Implement Signal Protocol pre-key upload
|
|
throw new Error("Not implemented yet");
|
|
}
|
|
|
|
export async function fetch(_userId: number, _token: string): Promise<unknown> {
|
|
// TODO: Implement Signal Protocol pre-key fetch
|
|
throw new Error("Not implemented yet");
|
|
}
|
|
|
|
|