forked from alemi/upub
chore: shut many unused warning with one smple trick
This commit is contained in:
parent
dd0c354aed
commit
6cb45bd5f0
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
mod server;
|
||||
pub mod server; // TODO there are some methods that i dont use yet, make it public so that ra shuts up
|
||||
mod model;
|
||||
mod routes;
|
||||
mod cli;
|
||||
|
|
|
@ -5,7 +5,7 @@ use base64::Engine;
|
|||
use reqwest::{header::{ACCEPT, CONTENT_TYPE, USER_AGENT}, Method, Response};
|
||||
use sea_orm::{sea_query::Expr, ColumnTrait, EntityTrait, IntoActiveModel, QueryFilter};
|
||||
|
||||
use crate::{errors::UpubError, model, VERSION};
|
||||
use crate::{model, VERSION};
|
||||
|
||||
use super::{auth::HttpSignature, Context};
|
||||
|
||||
|
|
Loading…
Reference in a new issue