GoAT Site is library that implements Standard.site in Go.
atprotocol standard-site atproto library
1
fork

Configure Feed

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

docs(info): replace context background by todo in readme

+3 -3
+3 -3
README.md
··· 37 37 var did *atproto.DID 38 38 var client xrpc.Client 39 39 var rkey atproto.RecordKey 40 - valid, err := pub.Verify(context.Background(), client, did, rkey) 40 + valid, err := pub.Verify(context.TODO(), client, did, rkey) 41 41 if err != nil { 42 42 panic(err) 43 43 } ··· 46 46 } 47 47 48 48 var doc *site.Document 49 - pubUrl, err := doc.PublicationURL(context.Background(), client) 49 + pubUrl, err := doc.PublicationURL(context.TODO(), client) 50 50 if err != nil { 51 51 panic(err) 52 52 } 53 - valid, err = doc.Verify(context.Background(), client, pubUrl, did, rkey) 53 + valid, err = doc.Verify(context.TODO(), client, pubUrl, did, rkey) 54 54 if err != nil { 55 55 panic(err) 56 56 }