fix a few compile errors

This commit is contained in:
blek 2023-10-07 19:29:27 +10:00
parent a6b669a007
commit bea8e707a2
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@
pages.rs - All the HTML pages pages.rs - All the HTML pages
*/ */
use std::{collections::HashMap, convert::Infallible}; use std::collections::HashMap;
use warp::{reply::{Reply, Html}, Filter, reject::{Rejection, Reject}}; use warp::{reply::{Reply, Html}, Filter, reject::Rejection};
use askama::Template; use askama::Template;
use crate::env::Env; use crate::env::Env;