d1af10c5ad
Co-authored-by: Douwe M Osinga <douwe@sidewalklabs.com>
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import { acpImportSession } from './acp/sessions';
|
|
|
|
/**
|
|
* Imports a session from an encrypted Nostr deep link.
|
|
*/
|
|
export async function importNostrSessionFromDeepLink(url: string): Promise<void> {
|
|
await acpImportSession(url, 'nostr');
|
|
}
|