Skip to main content

eduboardapi/config/
mod.rs

1pub mod board;
2pub mod exam;
3pub mod year;
4
5pub const BASE_URL: &str = "http://www.educationboardresults.gov.bd";
6pub const RESULT_ENDPOINT: &str = "result.php";
7
8pub struct AppConfig {
9    pub timeout_seconds: u64,
10}
11
12impl Default for AppConfig {
13    fn default() -> Self {
14        Self {
15            timeout_seconds: 10,
16        }
17    }
18}