1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-17 15:53:31 +01:00
actix-net/actix-lets-encrypt/src/certificate_signer.rs
2019-08-06 23:12:48 -04:00

12 lines
198 B
Rust

struct CertificateRequest<'a> {
domains: &'a [&'a str]
}
impl<'a> CertificateRequest<'a> {
fn new(domains: &'a [&'a str]) -> Self {
return CertificateRequest { domains };
}
}