12 lines
177 B
Rust
12 lines
177 B
Rust
use relm4::factory::FactoryComponent;
|
|
|
|
#[derive(Debug)]
|
|
struct TestFactoryComponent;
|
|
|
|
#[relm4_macros::factory]
|
|
impl FactoryComponent for TestFactoryComponent {
|
|
|
|
}
|
|
|
|
fn main() {}
|