Files
harmony/harmony/src/domain/topology/ingress.rs

8 lines
190 B
Rust

use crate::topology::PreparationError;
use async_trait::async_trait;
#[async_trait]
pub trait Ingress {
async fn get_domain(&self, service: &str) -> Result<String, PreparationError>;
}