refactor(router): make compatibility module, types and utilities public (#197)

This commit is contained in:
ItsMeShashank
2022-12-22 11:22:39 +05:30
committed by GitHub
parent 6f847e33d9
commit 8f803ad507
9 changed files with 184 additions and 185 deletions

View File

@ -1,10 +1,10 @@
mod app;
mod customers;
mod payment_intents;
mod refunds;
mod setup_intents;
pub mod app;
pub mod customers;
pub mod payment_intents;
pub mod refunds;
pub mod setup_intents;
use actix_web::{web, Scope};
mod errors;
pub mod errors;
use crate::routes;
pub struct StripeApis;