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,