add comments

This commit is contained in:
yggverse 2024-11-27 19:21:09 +02:00
parent a5633046e1
commit c728d1c001

View File

@ -1,5 +1,11 @@
/// Single client instance holder for `Page` object.
///
/// unlike new client instance init on every page open,
/// this solution provide additional client-side features
/// e.g. session cache management on certificate change in runtime
pub struct Client {
pub gemini: gemini::Client,
// other supported clients here..
}
impl Client {