Files
windmill/backend/windmill-api/src/inkeep_oss.rs
T
2025-06-03 16:00:42 +02:00

12 lines
216 B
Rust

#[cfg(feature = "private")]
#[allow(unused)]
pub use crate::inkeep_ee::*;
#[cfg(not(feature = "private"))]
use axum::Router;
#[cfg(not(feature = "private"))]
pub fn global_service() -> Router {
Router::new()
}