mirror of
https://github.com/fluencelabs/trust-graph-test
synced 2025-04-24 23:22:18 +00:00
16 lines
257 B
Rust
16 lines
257 B
Rust
use marine_rs_sdk::WasmLoggerBuilder;
|
|
|
|
mod dto;
|
|
mod results;
|
|
mod service_api;
|
|
mod service_impl;
|
|
mod storage_impl;
|
|
mod tests;
|
|
|
|
pub fn main() {
|
|
WasmLoggerBuilder::new()
|
|
.with_log_level(log::LevelFilter::Info)
|
|
.build()
|
|
.unwrap();
|
|
}
|