1# atex
2
3A set of utilities for working with the [AT Protocol](https://atproto.com) in
4Elixir.
5
6## Current Roadmap (in no particular order)
7
8- [x] `at://` parsing and struct
9- [ ] XRPC client
10- [ ] CID & TID codecs
11- [ ] DID & handle resolution service with a cache
12- [ ] Structs with validation for the common lexicons
13 - [ ] Probably codegen for doing this with other lexicons
14- [ ] Oauth stuff
15
16## Installation
17
18Get atex from [hex.pm](https://hex.pm) by adding it to your `mix.exs`:
19
20```elixir
21def deps do
22 [
23 {:atex, "~> 0.1"}
24 ]
25end
26```
27
28Documentation can be found on HexDocs at https://hexdocs.pm/atex.
29
30---
31
32This project is licensed under the [MIT License](./LICENSE).