chore: linting

This commit is contained in:
Aravinth Manivannan 2022-10-05 17:00:31 +05:30
parent 6e70996f3f
commit 0998b2a2de
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 2 additions and 2 deletions

View File

@ -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,