First Commit

This commit is contained in:
Peter Schiwy
2024-05-31 00:32:51 +02:00
commit bab592edf1
23 changed files with 3268 additions and 0 deletions

7
src/mutations/mod.rs Normal file
View File

@@ -0,0 +1,7 @@
pub mod hersteller;
pub mod typ;
use async_graphql::MergedObject;
#[derive(MergedObject, Default)]
pub struct Mutation(typ::TypMutation, hersteller::HerstellerMutation);