8 lines
190 B
Rust
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>;
|
|
}
|