Files
axum-async-graphql/src/mutations/mod.rs

8 lines
172 B
Rust
Raw Normal View History

2024-05-31 00:32:51 +02:00
pub mod hersteller;
pub mod typ;
use async_graphql::MergedObject;
#[derive(MergedObject, Default)]
pub struct Mutation(typ::TypMutation, hersteller::HerstellerMutation);