forked from spacebar/rust-nex
10 lines
170 B
Rust
10 lines
170 B
Rust
use cfg_if::cfg_if;
|
|
|
|
pub mod common;
|
|
cfg_if! {
|
|
if #[cfg(feature = "friends")]{
|
|
pub mod friends_backend;
|
|
} else {
|
|
pub mod regular_backend;
|
|
}
|
|
}
|