Pre-packaged app.bsky and chat.bsky AT Protocol lexicons.
0
fork

Configure Feed

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

fix: correct atex_atproto -> atex_bsky

+4 -4
+1 -1
.gitignore
··· 4 4 /doc/ 5 5 erl_crash.dump 6 6 *.ez 7 - atex_atproto-*.tar 7 + atex_bsky-*.tar 8 8 /tmp/ 9 9 .envrc 10 10 .direnv
+3 -3
README.md
··· 1 - # atex_atproto 1 + # atex_bsky 2 2 3 3 This package contains the [`app.bsky`] and [`chat.bsky`] lexicons translated 4 4 into Elixir modules for use with [atex]. 5 5 6 6 ## Installation 7 7 8 - Add `atex_atproto` to your list of dependencies in `mix.exs`: 8 + Add `atex_bsky` to your list of dependencies in `mix.exs`: 9 9 10 10 ```elixir 11 11 def deps do 12 12 [ 13 - {:atex_atproto, "~> 0.1"} 13 + {:atex_bsky, "~> 0.1"} 14 14 ] 15 15 end 16 16 ```