aboutsummaryrefslogtreecommitdiffstats
path: root/rust/fatcat-openapi/src/mimetypes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/fatcat-openapi/src/mimetypes.rs')
-rw-r--r--rust/fatcat-openapi/src/mimetypes.rs18
1 files changed, 16 insertions, 2 deletions
diff --git a/rust/fatcat-openapi/src/mimetypes.rs b/rust/fatcat-openapi/src/mimetypes.rs
index 13c4ccbe..3db27ab3 100644
--- a/rust/fatcat-openapi/src/mimetypes.rs
+++ b/rust/fatcat-openapi/src/mimetypes.rs
@@ -760,6 +760,22 @@ pub mod responses {
lazy_static! {
pub static ref GET_EDITOR_EDITGROUPS_GENERIC_ERROR: Mime = mime!(Application / Json);
}
+ // Create Mime objects for the response content types for LookupEditor
+ lazy_static! {
+ pub static ref LOOKUP_EDITOR_FOUND: Mime = mime!(Application / Json);
+ }
+ // Create Mime objects for the response content types for LookupEditor
+ lazy_static! {
+ pub static ref LOOKUP_EDITOR_BAD_REQUEST: Mime = mime!(Application / Json);
+ }
+ // Create Mime objects for the response content types for LookupEditor
+ lazy_static! {
+ pub static ref LOOKUP_EDITOR_NOT_FOUND: Mime = mime!(Application / Json);
+ }
+ // Create Mime objects for the response content types for LookupEditor
+ lazy_static! {
+ pub static ref LOOKUP_EDITOR_GENERIC_ERROR: Mime = mime!(Application / Json);
+ }
// Create Mime objects for the response content types for UpdateEditor
lazy_static! {
pub static ref UPDATE_EDITOR_UPDATED_EDITOR: Mime = mime!(Application / Json);
@@ -1880,7 +1896,6 @@ pub mod responses {
lazy_static! {
pub static ref UPDATE_WORK_GENERIC_ERROR: Mime = mime!(Application / Json);
}
-
}
pub mod requests {
@@ -1989,5 +2004,4 @@ pub mod requests {
lazy_static! {
pub static ref UPDATE_WORK: Mime = mime!(Application / Json);
}
-
}