fedimovies/src/config/mod.rs
silverpill 26ae1036de Change representation of blockchain config in Instance API response
Allowed multiple blockchain configs.
2022-08-31 21:30:03 +00:00

12 lines
211 B
Rust

mod blockchain;
mod environment;
mod main;
pub use blockchain::{
BlockchainConfig,
EthereumConfig,
MoneroConfig,
};
pub use environment::Environment;
pub use main::{parse_config, Config, Instance};