diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-28 14:48:15 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-28 14:48:15 -0700 |
commit | 0bc7522d8c658a099c1106b7fade3c4d2acc9775 (patch) | |
tree | 3a0d63f538a275f91d9cbb42c00fb8520e21dcb8 /rust/fatcat-api/README.md | |
parent | a0c8bf9fba31156f1ad7f79dafa98d1f4462b220 (diff) | |
download | fatcat-0bc7522d8c658a099c1106b7fade3c4d2acc9775.tar.gz fatcat-0bc7522d8c658a099c1106b7fade3c4d2acc9775.zip |
refactor to more ergonomic operation names
Diffstat (limited to 'rust/fatcat-api/README.md')
-rw-r--r-- | rust/fatcat-api/README.md | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/rust/fatcat-api/README.md b/rust/fatcat-api/README.md index 32e6390b..856d54b5 100644 --- a/rust/fatcat-api/README.md +++ b/rust/fatcat-api/README.md @@ -13,7 +13,7 @@ To see how to make this your own, look here: [README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md) - API version: 0.1.0 -- Build date: 2018-05-27T21:52:37.437Z +- Build date: 2018-05-28T21:40:16.318Z This autogenerated project defines an API crate `fatcat` which contains: * An `Api` trait defining the API in Rust. @@ -56,30 +56,30 @@ cargo run --example server To run a client, follow one of the following simple steps: ``` -cargo run --example client ContainerBatchPost -cargo run --example client ContainerIdGet -cargo run --example client ContainerLookupGet -cargo run --example client ContainerPost -cargo run --example client CreatorBatchPost -cargo run --example client CreatorIdGet -cargo run --example client CreatorLookupGet -cargo run --example client CreatorPost -cargo run --example client EditgroupIdAcceptPost -cargo run --example client EditgroupIdGet -cargo run --example client EditgroupPost -cargo run --example client EditorUsernameChangelogGet -cargo run --example client EditorUsernameGet -cargo run --example client FileBatchPost -cargo run --example client FileIdGet -cargo run --example client FileLookupGet -cargo run --example client FilePost -cargo run --example client ReleaseBatchPost -cargo run --example client ReleaseIdGet -cargo run --example client ReleaseLookupGet -cargo run --example client ReleasePost -cargo run --example client WorkBatchPost -cargo run --example client WorkIdGet -cargo run --example client WorkPost +cargo run --example client AcceptEditgroup +cargo run --example client CreateContainer +cargo run --example client CreateContainerBatch +cargo run --example client CreateCreator +cargo run --example client CreateCreatorBatch +cargo run --example client CreateEditgroup +cargo run --example client CreateFile +cargo run --example client CreateFileBatch +cargo run --example client CreateRelease +cargo run --example client CreateReleaseBatch +cargo run --example client CreateWork +cargo run --example client CreateWorkBatch +cargo run --example client GetContainer +cargo run --example client GetCreator +cargo run --example client GetEditgroup +cargo run --example client GetEditor +cargo run --example client GetEditorChangelog +cargo run --example client GetFile +cargo run --example client GetRelease +cargo run --example client GetWork +cargo run --example client LookupContainer +cargo run --example client LookupCreator +cargo run --example client LookupFile +cargo run --example client LookupRelease ``` ### HTTPS |