an app to share curated trails sidetrail.app
1

Configure Feed

Select the types of activity you want to include in your feed.

at main 274 B View raw
1/** 2 * TID (Timestamp ID) generation utilities 3 * Shared between client and server 4 * 5 * Uses the official ATProto TID implementation from @atproto/common-web 6 */ 7 8import { TID } from "@atproto/common-web"; 9 10export function generateTid(): string { 11 return TID.nextStr(); 12}