subconverter 0.2.34

A more powerful utility to convert between proxy subscription format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Settings module for subconverter
//!
//! This module contains all the configuration settings and utilities
pub mod external;
pub mod import;
pub mod import_toml;
pub mod ini_bindings;
pub mod settings;
pub mod toml_deserializer;
pub mod utils;
pub mod yaml_deserializer;

// Re-export settings struct and functions
pub use external::ExternalSettings;
pub use import::*;
pub use ini_bindings::*;
pub use settings::settings_struct::{refresh_configuration, update_settings_from_file, Settings};