summaryrefslogtreecommitdiffstats
path: root/librepology/src/v1/api.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-04-06 11:41:03 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-04-06 11:41:03 +0200
commitcaf7aa235c6c305e59a2587348eda9300736fc72 (patch)
treec7c4c2dc89bcd79a3f61652c4b463e51e457d6d5 /librepology/src/v1/api.rs
parent4f65f82b5d5f288a66f99150ce58b793076da061 (diff)
parent0b66d92a37dd368d7bef39b9c02a9d8eeb446115 (diff)
Merge branch 'format'
Diffstat (limited to 'librepology/src/v1/api.rs')
-rw-r--r--librepology/src/v1/api.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/librepology/src/v1/api.rs b/librepology/src/v1/api.rs
index 3d659df..1c8cd6e 100644
--- a/librepology/src/v1/api.rs
+++ b/librepology/src/v1/api.rs
@@ -1,6 +1,6 @@
use crate::v1::error::Result;
-use crate::v1::types::Problem;
use crate::v1::types::Package;
+use crate::v1::types::Problem;
/// The high-level functionality of the repology API is represented in this trait
///
@@ -17,5 +17,3 @@ pub trait Api {
fn problems_for_maintainer<M: AsRef<str>>(&self, maintainer: M) -> Result<Vec<Problem>>;
}
-
-