mirror of
https://github.com/fafhrd91/actix-net
synced 2025-02-20 10:00: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 };
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|