2021-01-18 03:57:10 +03:00
|
|
|
use fluence::WasmLoggerBuilder;
|
|
|
|
|
2021-02-11 15:10:18 +03:00
|
|
|
mod dto;
|
2021-02-10 15:26:26 +03:00
|
|
|
mod results;
|
2021-01-20 00:17:24 +03:00
|
|
|
mod service_api;
|
2021-01-20 16:14:01 +03:00
|
|
|
mod storage_impl;
|
2021-01-20 00:17:24 +03:00
|
|
|
|
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 {
|
|
|
|
|
|
|
|
}*/
|