Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link to examples repository #28

Merged
merged 3 commits into from
Oct 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
}
```

For further examples, head over to the [examples](examples) directory.

## Optional Features

The following are a list of
Expand Down
3 changes: 1 addition & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
//! The top-level client for the Axiom API.
use std::env;

use serde::__private::doc;

use crate::{
datasets,
error::{Error, Result},
Expand Down Expand Up @@ -54,6 +52,7 @@ impl Client {
}

/// Get the url (cloned).
#[doc(hidden)]
pub fn url(&self) -> String {
self.url.clone()
}
Expand Down