mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 00:00:46 +00:00
8 lines
147 B
Rust
8 lines
147 B
Rust
#[cfg(feature = "stripe")]
|
|
use axum::Router;
|
|
|
|
#[cfg(feature = "stripe")]
|
|
pub fn add_stripe_routes(router: Router) -> Router {
|
|
return router;
|
|
}
|