Skip to content

Commit

Permalink
refactor: module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ChecksumDev committed Nov 3, 2023
1 parent 08cf9d4 commit 793b798
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#![forbid(unsafe_code)]
#![warn(clippy::all, clippy::pedantic)]

pub mod encryption;
pub mod models;
pub mod routes;
pub mod storage;
mod encryption;
mod models;
mod routes;
mod storage;
mod utils;

use actix_web::{
Expand Down
3 changes: 3 additions & 0 deletions src/routes/api/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
mod file;
mod gen;
mod user;

0 comments on commit 793b798

Please sign in to comment.