mirror of
https://github.com/actix/actix-extras.git
synced 2025-03-28 07:08:38 +01:00
12 lines
246 B
Rust
12 lines
246 B
Rust
use std::path::PathBuf;
|
|
|
|
use serde::Deserialize;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash, Deserialize)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct Tls {
|
|
pub enabled: bool,
|
|
pub certificate: PathBuf,
|
|
pub private_key: PathBuf,
|
|
}
|