summaryrefslogtreecommitdiff
path: root/crates/bot-http/src/model.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/bot-http/src/model.rs')
-rw-r--r--crates/bot-http/src/model.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/crates/bot-http/src/model.rs b/crates/bot-http/src/model.rs
deleted file mode 100644
index afd4717..0000000
--- a/crates/bot-http/src/model.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-use serde::Deserialize;
-
-/// Bad version of `/repos/{owner}/{repo}/pulls/{pull_number}` for Github's api
-#[derive(Clone, Debug, Deserialize)]
-pub struct PullRequest {
- pub merge_commit_sha: Option<String>,
-}
-
-/// `/random_teawie` for the teawieAPI
-#[derive(Clone, Debug, Deserialize)]
-pub struct RandomTeawie {
- pub url: Option<String>,
-}