mirror of
https://github.com/fafhrd91/actix-net
synced 2025-02-17 15:53:31 +01:00
12 lines
198 B
Rust
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 };
|
|
}
|
|
|
|
|
|
|
|
} |