From 0998b2a2de87cc33aaa87e207c2811db7b65f9df Mon Sep 17 00:00:00 2001 From: realaravinth Date: Wed, 5 Oct 2022 17:00:31 +0530 Subject: [PATCH] chore: linting --- src/api/v1/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/v1/mod.rs b/src/api/v1/mod.rs index 0d6125e..fcc48b6 100644 --- a/src/api/v1/mod.rs +++ b/src/api/v1/mod.rs @@ -16,8 +16,8 @@ */ use actix_web::web; -pub mod webhook; pub mod meta; +pub mod webhook; pub const API_V1_ROUTES: routes::Routes = routes::Routes::new(); @@ -30,8 +30,8 @@ pub fn services(cfg: &mut web::ServiceConfig) { } pub mod routes { - use crate::api::v1::webhook::routes::Webhook; use crate::api::v1::meta::routes::Meta; + use crate::api::v1::webhook::routes::Webhook; pub struct Routes { pub meta: Meta,