add client certificate api

This commit is contained in:
yggverse 2024-11-27 18:03:22 +02:00
parent 9d240c4c37
commit 4e712260ff
6 changed files with 129 additions and 5 deletions

View file

@ -1,10 +1,12 @@
//! High-level client API to interact with Gemini Socket Server:
//! * https://geminiprotocol.net/docs/protocol-specification.gmi
pub mod certificate;
pub mod connection;
pub mod error;
pub mod response;
pub use certificate::Certificate;
pub use connection::Connection;
pub use error::Error;
pub use response::Response;