mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-23 16:08:06 +00:00
Initial commit
This commit is contained in:
72
src/models/mod.rs
Normal file
72
src/models/mod.rs
Normal file
@ -0,0 +1,72 @@
|
||||
pub mod config;
|
||||
pub use self::config::Config;
|
||||
pub mod config_announcements;
|
||||
pub use self::config_announcements::ConfigAnnouncements;
|
||||
pub mod config_download_urls;
|
||||
pub use self::config_download_urls::ConfigDownloadUrls;
|
||||
pub mod config_dynamic_world_rows;
|
||||
pub use self::config_dynamic_world_rows::ConfigDynamicWorldRows;
|
||||
pub mod config_events;
|
||||
pub use self::config_events::ConfigEvents;
|
||||
pub mod current_user;
|
||||
pub use self::current_user::CurrentUser;
|
||||
pub mod deployment_group;
|
||||
pub use self::deployment_group::DeploymentGroup;
|
||||
pub mod developer_type;
|
||||
pub use self::developer_type::DeveloperType;
|
||||
pub mod error;
|
||||
pub use self::error::Error;
|
||||
pub mod file;
|
||||
pub use self::file::File;
|
||||
pub mod file_data;
|
||||
pub use self::file_data::FileData;
|
||||
pub mod file_status;
|
||||
pub use self::file_status::FileStatus;
|
||||
pub mod file_version;
|
||||
pub use self::file_version::FileVersion;
|
||||
pub mod inline_object;
|
||||
pub use self::inline_object::InlineObject;
|
||||
pub mod inline_object_1;
|
||||
pub use self::inline_object_1::InlineObject1;
|
||||
pub mod inline_object_2;
|
||||
pub use self::inline_object_2::InlineObject2;
|
||||
pub mod inline_object_3;
|
||||
pub use self::inline_object_3::InlineObject3;
|
||||
pub mod inline_object_4;
|
||||
pub use self::inline_object_4::InlineObject4;
|
||||
pub mod inline_response_200;
|
||||
pub use self::inline_response_200::InlineResponse200;
|
||||
pub mod inline_response_200_1;
|
||||
pub use self::inline_response_200_1::InlineResponse2001;
|
||||
pub mod inline_response_200_2;
|
||||
pub use self::inline_response_200_2::InlineResponse2002;
|
||||
pub mod inline_response_200_3;
|
||||
pub use self::inline_response_200_3::InlineResponse2003;
|
||||
pub mod inline_response_200_4;
|
||||
pub use self::inline_response_200_4::InlineResponse2004;
|
||||
pub mod inline_response_200_5;
|
||||
pub use self::inline_response_200_5::InlineResponse2005;
|
||||
pub mod inline_response_401;
|
||||
pub use self::inline_response_401::InlineResponse401;
|
||||
pub mod limited_user;
|
||||
pub use self::limited_user::LimitedUser;
|
||||
pub mod limited_world;
|
||||
pub use self::limited_world::LimitedWorld;
|
||||
pub mod mime_type;
|
||||
pub use self::mime_type::MimeType;
|
||||
pub mod notification;
|
||||
pub use self::notification::Notification;
|
||||
pub mod notification_type;
|
||||
pub use self::notification_type::NotificationType;
|
||||
pub mod release_status;
|
||||
pub use self::release_status::ReleaseStatus;
|
||||
pub mod response;
|
||||
pub use self::response::Response;
|
||||
pub mod success;
|
||||
pub use self::success::Success;
|
||||
pub mod user;
|
||||
pub use self::user::User;
|
||||
pub mod user_state;
|
||||
pub use self::user_state::UserState;
|
||||
pub mod user_status;
|
||||
pub use self::user_status::UserStatus;
|
Reference in New Issue
Block a user