Highly ambitious ATProtocol AppView service and sdks
at fix-postgres 5 lines 187 B view raw
1// Extract rkey from AT Protocol URI (format: at://did/collection/rkey) 2export function getRkey(uri: string): string { 3 const parts = uri.split('/'); 4 return parts[parts.length - 1]; 5}