mirror of
https://github.com/denisidoro/navi.git
synced 2026-01-23 02:14:19 +00:00
7 lines
115 B
Rust
7 lines
115 B
Rust
use crate::prelude::*;
|
|
|
|
pub trait HasDeps {
|
|
fn deps(&self) -> HashSet<TypeId> {
|
|
HashSet::new()
|
|
}
|
|
}
|