diff options
author | Yigit Sever | 2022-04-11 19:01:42 +0300 |
---|---|---|
committer | Yigit Sever | 2022-04-11 19:01:42 +0300 |
commit | 426e83ec6fba028692bed334803ae9d3a645cb18 (patch) | |
tree | a92c2d62f54e28493d1d3b3ddfc185c1ed5cf4a5 /src/custom_filters.rs | |
parent | 04c3b4597a995d73e6925c5391bfa27d27f298b7 (diff) | |
download | gradecoin-426e83ec6fba028692bed334803ae9d3a645cb18.tar.gz gradecoin-426e83ec6fba028692bed334803ae9d3a645cb18.tar.bz2 gradecoin-426e83ec6fba028692bed334803ae9d3a645cb18.zip |
[WIP] Spring cleaning
Diffstat (limited to 'src/custom_filters.rs')
-rw-r--r-- | src/custom_filters.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/custom_filters.rs b/src/custom_filters.rs index 7e0cae5..5bf284b 100644 --- a/src/custom_filters.rs +++ b/src/custom_filters.rs | |||
@@ -1,5 +1,6 @@ | |||
1 | /// Functions that extracts Structs to be used in warp routines | 1 | //! # Functions that extracts Structs to be used in warp routines |
2 | use crate::schema::{Block, Db, InitialAuthRequest, Transaction}; | 2 | use crate::block::{Block, InitialAuthRequest, Transaction}; |
3 | use crate::Db; | ||
3 | use std::convert::Infallible; | 4 | use std::convert::Infallible; |
4 | use warp::{Filter, Rejection}; | 5 | use warp::{Filter, Rejection}; |
5 | 6 | ||