forked from loafle/openapi-generator-original
* rust: support repr(int) enum * Regen APIS * remove the extra lines * merge most recent commits from master * update tests to ensure that enum compiles correctly * drop changes to kotlin files --------- Co-authored-by: Jihyun Yu <yjh0502@gmail.com>
13 lines
226 B
Rust
13 lines
226 B
Rust
#![allow(unused_imports)]
|
|
#![allow(clippy::too_many_arguments)]
|
|
|
|
extern crate serde_repr;
|
|
extern crate serde;
|
|
extern crate serde_json;
|
|
extern crate url;
|
|
extern crate hyper;
|
|
extern crate futures;
|
|
|
|
pub mod apis;
|
|
pub mod models;
|