echidna/src/components/window/sidebar.rs

9 lines
162 B
Rust

trait SidebarImplementedEditor {
fn setup_sidebar();
}
impl SidebarImplementedEditor for super::imp::EchidnaEditor {
fn setup_sidebar(){
}
}