mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-11-30 20:46:33 -05:00
Top to bottom pub mod then mod then pub use then use (incl. use crate and use self)
This commit is contained in:
parent
44c4b5dcea
commit
433704e48c
14 changed files with 38 additions and 33 deletions
|
|
@ -16,19 +16,20 @@
|
|||
missing_copy_implementations
|
||||
)]
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::fmt::{self, Display};
|
||||
|
||||
pub mod bitcoin;
|
||||
pub mod config;
|
||||
pub mod database;
|
||||
mod fs;
|
||||
pub mod monero;
|
||||
pub mod network;
|
||||
pub mod protocol;
|
||||
pub mod seed;
|
||||
pub mod trace;
|
||||
|
||||
mod fs;
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::fmt::{self, Display};
|
||||
|
||||
pub type Never = std::convert::Infallible;
|
||||
|
||||
/// XMR/BTC swap amounts.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue