We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
README.md
1 parent 75acbb0 commit 88b7579Copy full SHA for 88b7579
crates/crates_io_pagerduty/README.md
@@ -0,0 +1,7 @@
1
+# crates_io_pagerduty
2
+
3
+This package contains the code necessary to interact with the PagerDuty API.
4
5
+The crates.io on-call team uses PagerDuty to get notified about incidents. This
6
+package contains a `PagerdutyClient` struct that can be configured with an API
7
+token and service key to then trigger, acknowledge, and resolve incidents.
crates/crates_io_pagerduty/src/lib.rs
@@ -1,3 +1,5 @@
+#![doc = include_str!("../README.md")]
use anyhow::{anyhow, Result};
use reqwest::{header, Client, StatusCode as Status};
use secrecy::{ExposeSecret, SecretString};
0 commit comments