You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
840 B

#![allow(non_upper_case_globals)]
3 years ago
#[cfg(not(target_arch = "wasm32"))]
#[path = "."]
pub mod exports {
pub mod api;
pub mod builder;
pub mod cache;
pub mod config;
pub mod datatypes;
pub mod errors;
pub mod executor;
pub mod messaging;
pub mod models;
pub mod utils;
}
#[cfg(target_arch = "wasm32")]
#[path = "."]
pub mod exports {
pub mod config;
pub mod errors;
pub mod messaging;
pub mod models;
pub mod utils;
}
4 years ago
pub use config::UID;
3 years ago
pub use errors::{UError, UErrorBt, ULocalError, ULocalResult, UResult};
3 years ago
pub use exports::*;
pub mod schema_exports {
pub use crate::models::{Agentstate, Jobstate, Jobtype};
pub use diesel::sql_types::*;
}
4 years ago
4 years ago
#[macro_use]
extern crate diesel;
#[macro_use]
extern crate log;
extern crate env_logger;
#[macro_use]
extern crate mockall;