8 lines
133 B
Rust
8 lines
133 B
Rust
use super::Application;
|
|
use async_trait::async_trait;
|
|
|
|
#[async_trait]
|
|
pub trait Webapp: Application {
|
|
fn dns(&self) -> String;
|
|
}
|