d1993187b6
Used to not require access to the WorkerTask struct outside the `server` and `api2` module, so it'll be easier to separate those backup/server/client parts into separate crates. Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
28 lines
251 B
Rust
28 lines
251 B
Rust
pub mod task;
|
|
|
|
#[macro_use]
|
|
pub mod buildcfg;
|
|
|
|
#[macro_use]
|
|
pub mod tools;
|
|
|
|
#[macro_use]
|
|
pub mod server;
|
|
|
|
pub mod pxar;
|
|
|
|
#[macro_use]
|
|
pub mod backup;
|
|
|
|
pub mod config;
|
|
|
|
pub mod api2;
|
|
|
|
pub mod client;
|
|
|
|
pub mod auth_helpers;
|
|
|
|
pub mod auth;
|
|
|
|
pub mod rrd;
|