22 lines
387 B
Rust
Raw Normal View History

2021-01-18 03:57:10 +03:00
use fluence::WasmLoggerBuilder;
2021-02-10 15:26:26 +03:00
mod proxy_structs;
mod results;
mod service_api;
mod storage_impl;
2021-01-18 03:57:10 +03:00
pub fn main() {
WasmLoggerBuilder::new()
.with_log_level(log::Level::Info)
.build()
.unwrap();
2021-01-19 17:25:28 +03:00
}
2021-01-25 15:32:43 +03:00
// only option for now is to copy tests from trust graph,
// change connector to sqlite and fix compilation -_-
// TODO: fix it
/*#[cfg(test)]
mod tests {
}*/