remove api example

This commit is contained in:
Jonas Kruckenberg 2022-11-03 18:52:06 +01:00
parent 6bd4dd0489
commit b3e477ed18
37 changed files with 0 additions and 732 deletions

View file

@ -1,12 +0,0 @@
use serde::{Serialize, Deserialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Reply<'a> {
pub data: &'a str,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RequestBody<'a> {
pub id: i32,
pub name: &'a str,
}