add missing RelationshipQuery import

This commit is contained in:
glyph 2022-10-02 17:11:14 +01:00
parent 66a5f8b58d
commit 59947f6166
1 changed files with 2 additions and 0 deletions

View File

@ -345,6 +345,8 @@ In order to do this using the `golgi` RPC library, we have to construct a `Relat
`src/sbot.rs`
```rust
use golgi::api::friends::RelationshipQuery;
pub async fn is_following(public_key_a: &str, public_key_b: &str) -> Result<String, String> {
let mut sbot = init_sbot().await?;