Skip to main content

wechat_minapp/link/
mod.rs

1//! 微信小程序小程序链接生成模块
2//!
3//! ## 功能
4//! - [`short_link`] 生成电商短链接
5//!
6pub mod short_link;
7
8use crate::client::WechatMinappSDK;
9pub use short_link::{ShortLink, ShortLinkArgs};
10
11pub struct Link {
12    pub client: WechatMinappSDK,
13}
14
15impl Link {
16    pub fn new(client: WechatMinappSDK) -> Self {
17        Link { client }
18    }
19}