File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 39
39
do {
40
40
try await config.authenticate ()
41
41
42
- let atProto = ATProtoKit (sessionConfiguration : config)
42
+ let atProto = try await ATProtoKit (sessionConfiguration : config)
43
43
let atProtoBluesky = ATProtoBluesky (atProtoKitInstance : atProto)
44
44
45
45
let postResult = try await atProtoBluesky.createPostRecord (text : " Hello Bluesky!" )
@@ -60,9 +60,9 @@ I believe Bluesky and its accompanying AT Protocol gives the perfect balance bet
60
60
- [x] Written with adherence to the Swift API Design Guidelines.
61
61
- [ ] Well-written documentation for all of the AT Protocol and Bluesky APIs.
62
62
- [x] A RichText helper to parse text into the applicable facets.
63
- - [ ] Easily validate different identifiers.
63
+ - [x ] Easily validate different identifiers.
64
64
- [ ] A powerful Firehose API that retrieves and filters events and records in real-time.
65
- - [x ] A logging tool for easy debugging.
65
+ - [ ] A logging tool for easy debugging.
66
66
67
67
> [ !NOTE]
68
68
> Not all features above have been implemented; however, they will be, soon.
@@ -72,7 +72,7 @@ I believe Bluesky and its accompanying AT Protocol gives the perfect balance bet
72
72
You can use the Swift Package Manager to download and import the library into your project:
73
73
``` swift
74
74
dependencies: [
75
- .package (url : " https://github.com/MasterJ93/ATProtoKit.git" , from : " 0.23 .0" )
75
+ .package (url : " https://github.com/MasterJ93/ATProtoKit.git" , from : " 0.24 .0" )
76
76
]
77
77
```
78
78
You can’t perform that action at this time.
0 commit comments