cleaned up module imports

This commit is contained in:
Arlo Filley 2022-11-06 19:08:39 +00:00
parent d19fb43ada
commit c7691adb56

View File

@ -1,6 +1,12 @@
// relevant macros and imports for rocket.rs
#[macro_use] extern crate rocket;
use rocket::{Rocket, Build, fs::{FileServer, relative}, serde::{Deserialize, json::Json}, Error, Response};
use rocket::{
Rocket,
Build,
fs::{FileServer, relative},
serde::{Deserialize, json::Json}
};
pub mod sql;
#[get("/")]