artisan 0.10.0

Api RequesT Framework U Like - 你喜欢的 Rust API 请求框架
Documentation
//! 配置初始化示例

use artisan::{Artful, Config, HttpOptions};
use serde_json::json;
use std::collections::HashMap;

#[tokio::main]
async fn main() {
    // 基础配置初始化
    Artful::config(Config::default());

    // 带 HTTP 选项的配置
    let config_with_http = Config {
        http: HttpOptions {
            timeout: Some(10),
            connect_timeout: Some(5),
            ..Default::default()
        },
        ..Default::default()
    };
    Artful::config(config_with_http);

    // 带扩展配置(如支付渠道配置)
    let mut extra = HashMap::new();
    extra.insert(
        "alipay".to_string(),
        json!({
            "app_id": "2016082000295641",
            "notify_url": "https://example.com/alipay/notify",
        }),
    );
    extra.insert(
        "wechat".to_string(),
        json!({
            "mch_id": "1234567890",
            "notify_url": "https://example.com/wechat/notify",
        }),
    );

    let config_with_extra = Config {
        extra,
        http: HttpOptions {
            timeout: Some(5),
            connect_timeout: Some(3),
            ..Default::default()
        },
        ..Default::default()
    };
    Artful::config(config_with_extra);

    // 获取全局配置
    let global_config = Artful::get_config();
    println!("HTTP timeout: {:?}", global_config.http.timeout);

    // 获取扩展配置中的渠道信息
    if let Some(alipay) = global_config.extra.get("alipay") {
        println!("Alipay config: {}", alipay);
    }

    println!("Config initialized successfully!");
}