mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 08:01:38 +00:00
18 lines
341 B
Rust
18 lines
341 B
Rust
#[cfg(feature = "private")]
|
|
#[allow(unused)]
|
|
pub use crate::volumes_ee::*;
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
use axum::Router;
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
pub fn workspaced_service() -> Router {
|
|
Router::new()
|
|
}
|
|
|
|
#[cfg(not(feature = "private"))]
|
|
#[allow(dead_code)]
|
|
pub fn agent_workspaced_service() -> Router {
|
|
Router::new()
|
|
}
|