diff --git a/little-hesinde/src/api/opds/authors.rs b/little-hesinde/src/api/opds/authors.rs index 50b37c6..fff754e 100644 --- a/little-hesinde/src/api/opds/authors.rs +++ b/little-hesinde/src/api/opds/authors.rs @@ -12,10 +12,9 @@ use time::OffsetDateTime; use crate::{ APP_NAME, api::{ - SortOrder, + OPDS_TAG, SortOrder, authors::{self, SingleAuthorError}, error::{ErrorResponse, HttpStatus}, - OPDS_TAG, }, app_state::AppState, http_error, diff --git a/little-hesinde/src/api/opds/books.rs b/little-hesinde/src/api/opds/books.rs index 0cb0388..cad7b60 100644 --- a/little-hesinde/src/api/opds/books.rs +++ b/little-hesinde/src/api/opds/books.rs @@ -12,9 +12,8 @@ use time::OffsetDateTime; use crate::{ APP_NAME, api::{ - SortOrder, + OPDS_TAG, SortOrder, error::{ErrorResponse, HttpStatus}, - OPDS_TAG, }, app_state::AppState, data::book::Book, diff --git a/little-hesinde/src/api/opds/recent.rs b/little-hesinde/src/api/opds/recent.rs index 3f0c8e9..43bf133 100644 --- a/little-hesinde/src/api/opds/recent.rs +++ b/little-hesinde/src/api/opds/recent.rs @@ -11,9 +11,9 @@ use time::OffsetDateTime; use crate::{ APP_NAME, api::{ + OPDS_TAG, books::{self, RecentBooksError}, error::{ErrorResponse, HttpStatus}, - OPDS_TAG, }, app_state::AppState, http_error, diff --git a/little-hesinde/src/api/opds/search.rs b/little-hesinde/src/api/opds/search.rs index 0dde73b..853eb84 100644 --- a/little-hesinde/src/api/opds/search.rs +++ b/little-hesinde/src/api/opds/search.rs @@ -12,9 +12,9 @@ use super::books::{RenderError, render_books}; use crate::{ APP_NAME, api::{ + OPDS_TAG, error::{ErrorResponse, HttpStatus}, search::{self, SearchQueryError}, - OPDS_TAG, }, app_state::AppState, http_error, diff --git a/little-hesinde/src/api/opds/series.rs b/little-hesinde/src/api/opds/series.rs index a96a2bf..20a78dd 100644 --- a/little-hesinde/src/api/opds/series.rs +++ b/little-hesinde/src/api/opds/series.rs @@ -12,10 +12,9 @@ use time::OffsetDateTime; use crate::{ APP_NAME, api::{ - SortOrder, + OPDS_TAG, SortOrder, error::{ErrorResponse, HttpStatus}, series::{self, SingleSeriesError}, - OPDS_TAG, }, app_state::AppState, http_error,