1import {AtUri} from '@atproto/api' 2 3export function getRkey({uri}: {uri: string}): string { 4 const at = new AtUri(uri) 5 return at.rkey 6}