aboutsummaryrefslogtreecommitdiffstats
path: root/rust/fatcat-openapi/src/mimetypes.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-18 17:48:56 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-18 17:48:56 -0700
commitedc000220baee1f91811345aba87bdab2d259c61 (patch)
tree63aa10810022cef6966ed3a436b4f5473004ff51 /rust/fatcat-openapi/src/mimetypes.rs
parentde723a0815f35e1003f892a469bdf9f6b74d77af (diff)
downloadfatcat-edc000220baee1f91811345aba87bdab2d259c61.tar.gz
fatcat-edc000220baee1f91811345aba87bdab2d259c61.zip
codegen rust v0.3.1
Diffstat (limited to 'rust/fatcat-openapi/src/mimetypes.rs')
-rw-r--r--rust/fatcat-openapi/src/mimetypes.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/rust/fatcat-openapi/src/mimetypes.rs b/rust/fatcat-openapi/src/mimetypes.rs
index ef297f69..51ff326e 100644
--- a/rust/fatcat-openapi/src/mimetypes.rs
+++ b/rust/fatcat-openapi/src/mimetypes.rs
@@ -52,6 +52,26 @@ pub mod responses {
lazy_static! {
pub static ref AUTH_OIDC_GENERIC_ERROR: Mime = mime!(Application / Json);
}
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_SUCCESS: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_BAD_REQUEST: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_NOT_AUTHORIZED: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_FORBIDDEN: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_GENERIC_ERROR: Mime = mime!(Application / Json);
+ }
/// Create Mime objects for the response content types for GetChangelog
lazy_static! {
pub static ref GET_CHANGELOG_SUCCESS: Mime = mime!(Application / Json);