1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-20 10:00:31 +01:00
actix-net/actix-lets-encrypt/src/certificate_signer.rs

12 lines
198 B
Rust
Raw Normal View History

2019-08-06 23:12:48 -04:00
struct CertificateRequest<'a> {
domains: &'a [&'a str]
}
impl<'a> CertificateRequest<'a> {
fn new(domains: &'a [&'a str]) -> Self {
return CertificateRequest { domains };
}
}