We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 236cf89 commit 6de36c0Copy full SHA for 6de36c0
1 file changed
README.md
@@ -52,7 +52,7 @@ The client has two main operational modes:
52
Use the `OauthClient` to generate access tokens for API access:
53
54
```rust
55
-use openapi_client::OauthClient;
+use openapi_sdk::OauthClient;
56
use serde::{Deserialize, Serialize};
57
58
#[derive(Debug, Serialize, Deserialize)]
@@ -89,7 +89,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
89
Use the `Client` to make API calls with your access tokens:
90
91
92
-use openapi_client::Client;
+use openapi_sdk::Client;
93
use serde::Serialize;
94
use std::collections::HashMap;
95
0 commit comments