12 lines
162 B
Rust
12 lines
162 B
Rust
#![allow(warnings)]
|
|
use anyhow::Error;
|
|
use sdk_common::MutexExt;
|
|
|
|
pub mod api;
|
|
mod peers;
|
|
mod user;
|
|
mod wallet;
|
|
mod scanner;
|
|
|
|
const WITH_CUTTHROUGH: bool = true;
|