Files
windmill/backend/windmill-worker/src/lib.rs
T
Ruben Fiszel 1ff5bc2f7a feat: manage cache and init scripts from worker group UI (#2396)
* cache & inits

* cache & inits

* cache & inits

* all

* fix tests

* improve
2023-10-05 19:42:15 +02:00

22 lines
392 B
Rust

#[cfg(feature = "enterprise")]
mod bigquery_executor;
#[cfg(feature = "enterprise")]
mod snowflake_executor;
mod bash_executor;
mod bun_executor;
pub mod common;
mod config;
mod dedicated_worker;
mod deno_executor;
mod global_cache;
mod go_executor;
mod graphql_executor;
mod js_eval;
mod mysql_executor;
mod pg_executor;
mod python_executor;
mod worker;
mod worker_flow;
pub use worker::*;