8 lines
172 B
Rust
8 lines
172 B
Rust
|
|
pub mod hersteller;
|
||
|
|
pub mod typ;
|
||
|
|
|
||
|
|
use async_graphql::MergedObject;
|
||
|
|
|
||
|
|
#[derive(MergedObject, Default)]
|
||
|
|
pub struct Mutation(typ::TypMutation, hersteller::HerstellerMutation);
|