A URL shortener service that uses ATProto to allow self hosting and ensuring the user owns their data
at main 170 B view raw
1package atshorter 2 3import "github.com/bluesky-social/indigo/atproto/syntax" 4 5var TIDClock = syntax.NewTIDClock(0) 6 7func TID() string { 8 return TIDClock.Next().String() 9}