Skip to content

Commit

Permalink
fix: match module name with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
azzamsa committed Jul 27, 2023
1 parent f402194 commit 314b5e7
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/domain/user/service/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use frunk::LabelledGeneric;
use uuid::Uuid;

use super::repository::Repository;
use crate::{db::DB, drivers::Mailer};
use crate::{db::DB, driver::Mailer};

#[derive(Debug)]
pub struct Service {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub mod config;
pub mod context;
pub mod db;
pub mod domain;
pub mod drivers;
pub mod driver;
mod errors;
pub mod logger;
pub mod relay;
Expand Down
2 changes: 1 addition & 1 deletion src/routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use crate::{
context::ServerContext,
db,
domain::{health, meta, user},
drivers::mailer::Mailer,
driver::mailer::Mailer,
routes,
schema::{AppSchema, Mutation, Query},
Error,
Expand Down

0 comments on commit 314b5e7

Please sign in to comment.