google-cloud-metadata

Google Cloud Platform GCE check library.

crates.io

Installation

[dependencies] google-cloud-metadata = 0.1.0

Usage

```rust use googlecloudmetadata::*;

[tokio::test]

async fn testongce() { // true: server is running on the GCP such as GCE and GKE. let result = ongce().await; asserteq!(true, result); } ```