decentralized and customizable links page on top of atproto ligo.at
atproto link-in-bio python uv
at main 7 lines 207 B view raw
1create table if not exists pdss ( 2 name text not null unique, 3 url text not null unique, 4 relevance integer not null 5) strict; 6 7create index if not exists pdss_by_relevance on pdss(relevance desc);