mirror of
https://github.com/fluencelabs/trust-graph-test
synced 2025-04-25 08:22:30 +00:00
12 lines
194 B
Rust
12 lines
194 B
Rust
use fluence::WasmLoggerBuilder;
|
|
|
|
mod storage_impl;
|
|
mod service_api;
|
|
|
|
pub fn main() {
|
|
WasmLoggerBuilder::new()
|
|
.with_log_level(log::Level::Info)
|
|
.build()
|
|
.unwrap();
|
|
}
|