Files
windmill/backend/windmill-worker/src/lib.rs
wendrul f94fed5ee7 Add csharp stuff and merge after the rewrite
* Add csharp, boilerplate + minimal execution
    * Add initial parser
    * Frontend + wasm export of the tree sitter parser
    * Arg spread and use cache
2024-12-05 16:28:57 +01:00

42 lines
859 B
Rust

#[cfg(feature = "enterprise")]
mod bigquery_executor;
#[cfg(feature = "enterprise")]
mod mssql_executor;
#[cfg(feature = "enterprise")]
mod snowflake_executor;
mod ansible_executor;
mod bash_executor;
mod bun_executor;
pub mod common;
mod config;
#[cfg(feature = "enterprise")]
mod dedicated_worker;
mod deno_executor;
mod global_cache;
mod go_executor;
mod graphql_executor;
mod handle_child;
mod job_logger;
mod js_eval;
mod mysql_executor;
mod pg_executor;
mod php_executor;
mod python_executor;
mod result_processor;
mod rust_executor;
mod worker;
mod worker_flow;
mod worker_lockfiles;
mod job_logger_ee;
mod csharp_executor;
pub use worker::*;
pub use result_processor::handle_job_error;
pub use bun_executor::{
get_common_bun_proc_envs, install_bun_lockfile, prebundle_bun_script, prepare_job_dir,
};
pub use deno_executor::generate_deno_lock;