support_kit/deployments/deployment_control.rs
1use rustls_acme::axum::AxumAcceptor;
2
3use super::{DeploymentConfig, SecurityControl};
4
5pub struct DeploymentControl;
6
7impl DeploymentControl {
8 pub async fn initialize(deployment_config: &DeploymentConfig) -> Option<AxumAcceptor> {
9 SecurityControl::new(deployment_config).init().await
10 }
11}