remove unnecessary imports

This commit is contained in:
glyph 2022-08-07 13:17:23 +01:00
parent 31b432165e
commit 3fe1a4bbea
2 changed files with 1 additions and 6 deletions

View File

@ -1,10 +1,6 @@
use std::process;
use golgi::{
api::friends::{FriendsHops, RelationshipQuery},
sbot::Keystore,
GolgiError, Sbot,
};
use golgi::{sbot::Keystore, GolgiError, Sbot};
// Golgi is an asynchronous library so we must call it from within an
// async function. The `GolgiError` type encapsulates all possible

View File

@ -14,7 +14,6 @@
use std::collections::HashMap;
use async_std::stream::{Stream, StreamExt};
use serde_json::Value;
use crate::{
api::get_subset::{SubsetQuery, SubsetQueryOptions},