tangled
alpha
login
or
join now
comet.sh
/
atex
23
fork
atom
An Elixir toolkit for the AT Protocol.
hexdocs.pm/atex
elixir
bluesky
atproto
decentralization
23
fork
atom
overview
issues
pulls
pipelines
feat(docs): add groups in ExDoc
ovyerus.com
5 months ago
6c7c464a
f622d682
verified
This commit was signed with the committer's
known signature
.
ovyerus.com
SSH Key Fingerprint:
SHA256:mXbp9WNBIT0nRNe28t2hrxfSwnSX7UBeW2DVlIyf0uw=
+11
-3
2 changed files
expand all
collapse all
unified
split
README.md
mix.exs
+1
-1
README.md
···
21
21
```elixir
22
22
def deps do
23
23
[
24
24
-
{:atex, "~> 0.3"}
24
24
+
{:atex, "~> 0.5"}
25
25
]
26
26
end
27
27
```
+10
-2
mix.exs
···
54
54
[
55
55
extras: [
56
56
LICENSE: [title: "License"],
57
57
-
"README.md": [title: "Overview"]
57
57
+
"README.md": [title: "Overview"],
58
58
+
"CHANGELOG.md": [title: "Changelog"]
58
59
],
59
60
main: "readme",
60
61
source_url: @github,
61
62
source_ref: "v#{@version}",
62
62
-
formatters: ["html"]
63
63
+
formatters: ["html"],
64
64
+
groups_for_modules: [
65
65
+
"Data types": [Atex.AtURI, Atex.DID, Atex.Handle, Atex.NSID, Atex.TID],
66
66
+
XRPC: ~r/^Atex\.XRPC/,
67
67
+
OAuth: [Atex.Config.OAuth, Atex.OAuth, Atex.OAuth.Plug],
68
68
+
Lexicons: ~r/^Atex\.Lexicon/,
69
69
+
Identity: ~r/^Atex\.IdentityResolver/
70
70
+
]
63
71
]
64
72
end
65
73
end